Please help me to convert this below code to vb.net. I have no idea to convert from anonymous method to vb.net. I'm currently using VS2010.
public void DoWork(CustomObject obj)
{
var linq = (from s in storages
where s.Key == obj.Key
select s.Value).ToList();
Action<ICustomService> act =
delegate(ICustomService service)
{
service.ChangeValue(obj);
};
linq.ForEach(act);
}
Thank you in advance.
Pure C# Developer