E
Eric Cathell
I can not find the answer for this anywhere. What is the keyword in VB.net
that matches the default(T) generics keywork in vb.net?
C#
return ID == null || ID.Equals(default(IdT));
vb.net
Return ((ID Is Nothing) Or ID.Equals(default(idt)))
default expects and expression.
Thanks.
that matches the default(T) generics keywork in vb.net?
C#
return ID == null || ID.Equals(default(IdT));
vb.net
Return ((ID Is Nothing) Or ID.Equals(default(idt)))
default expects and expression.
Thanks.