Manipulate Object Property Using Lambda Expression In LINQ
Here's how to manipulate or update an object property using Lambda format in LINQ. In this example, I assigned a value to the textbox control's Text property using a delegate that applies the concept of Lambda expressions in LINQ.
ShowEmployeeDelegate d = () => { tMessage.Text = "Nelson"; };
d.Invoke();
Comments
Post a Comment