Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unneeded NETSTANDARD1_6 compiler directives and unneeded usings #317

Merged
merged 3 commits into from
Aug 19, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'master' into fix_netstandard
metoule committed Aug 19, 2024
commit 9d2095f68f550c7a61ea3f79156a5e1385b965dc
5 changes: 5 additions & 0 deletions src/DynamicExpresso.Core/Exceptions/ParseException.cs
Original file line number Diff line number Diff line change
@@ -21,6 +21,11 @@ public ParseException(string message, int position, Exception innerException)

public int Position { get; private set; }

public static ParseException Create(int pos, string format, params object[] args)
{
return new ParseException(string.Format(format, args), pos);
}

protected ParseException(
SerializationInfo info,
StreamingContext context)
You are viewing a condensed version of this merge commit. You can view the full changes here.