You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
unless we add using System.Collections.Generic; to the file where we new MyClass up with a lambda.
DSharp does not include by default the usings for implicit types (IDictionary in this case) and hence, it's not able to find them. It outputs the following error: error DS0003: Object reference not set to an instance of an object.
The text was updated successfully, but these errors were encountered:
Given the following class
this statement will fail to compile
unless we add
using System.Collections.Generic;
to the file where we newMyClass
up with a lambda.DSharp does not include by default the usings for implicit types (
IDictionary
in this case) and hence, it's not able to find them. It outputs the following error:error DS0003: Object reference not set to an instance of an object.
The text was updated successfully, but these errors were encountered: