N
not_a_commie
I want
public interface IDD{
Guid ID { get; internal set; }
}
The compiler doesn't like the restricted scope in the interface. Is
there some right way to do this?
public interface IDD{
Guid ID { get; internal set; }
}
The compiler doesn't like the restricted scope in the interface. Is
there some right way to do this?