Hi all ,
currently i used csla ver 4.3.12 in c#. but recently I got a small project which need vb.net as language
so, i need a easy migration from my c# syntax into vb.net ?
could anyone give a suggestion ?
public static readonly PropertyInfo<string> InvNoProperty =
RegisterProperty<string>(t => t.InvoiceNo);
public string InvoiceNo
{
get { return GetProperty(InvNoProperty); }
private set { LoadProperty(InvNoProperty, value); }
}
into a vb.net ????
thanks
stefanus