Open AndersMalmgren opened 8 years ago
For example consider this
public interface IHandle<in TMessage> { void Handle(TMessage message); }
Foo implements IHandle<string>
IHandle<string>
This returns false System.Console.WriteLine(foo is IHandle<string>);
System.Console.WriteLine(foo is IHandle<string>);
Running this in the standard CLR will return true
For example consider this
Foo implements
IHandle<string>
This returns false
System.Console.WriteLine(foo is IHandle<string>);
Running this in the standard CLR will return true