I'm not sure how to convert C # code with delegate to Visual Basic code, can you help me?
List<XmlUser> matchingUsers = this.Store.Users.FindAll(delegate(XmlUser user)
{
return user.Email.Equals(emailToMatch,
StringComparison.OrdinalIgnoreCase);
}
);
source
share