We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If you look at line 98 in the current version of Merger.cs, it's using the same value twice when determining types
var value1 = kvp1.Value; var value2 = kvp2.Value; var type1 = value1.GetType (); var type2 = value1.GetType ();
Doesn't seem right to me...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If you look at line 98 in the current version of Merger.cs, it's using the same value twice when determining types
Doesn't seem right to me...
The text was updated successfully, but these errors were encountered: