how do I call this in vb.net?

  • Thread starter Thread starter Mel
  • Start date Start date
M

Mel

I want to call the method below from vb.net; I can't figure out the syntax. In C# I call it like this "Get<ContactType>(t => t.nvchType == strType);". Help please.

public virtual T Get<T>(Expression<Func<T, bool>> predicate) where T : class
 
Back
Top