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
NullReferenceException
HashSet
The code here:
Tomlyn/src/Tomlyn/Model/Accessors/ListDynamicAccessor.cs
Line 154 in c264d1d
will throw a NullReferenceException because of:
Lines 45 to 52 in c264d1d
will never change _addMethod as the declaration of Add method in HashSet is:
_addMethod
Add
bool HashSet<int>.Add(int item);
where the return type is not matched.
Maybe add support for ISet or ICollection instead of using a hard-coded method declaration?
ISet
ICollection
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The code here:
Tomlyn/src/Tomlyn/Model/Accessors/ListDynamicAccessor.cs
Line 154 in c264d1d
will throw a
NullReferenceException
because of:Tomlyn/src/Tomlyn/Model/Accessors/ListDynamicAccessor.cs
Lines 45 to 52 in c264d1d
will never change
_addMethod
as the declaration ofAdd
method inHashSet
is:where the return type is not matched.
Maybe add support for
ISet
orICollection
instead of using a hard-coded method declaration?The text was updated successfully, but these errors were encountered: