arshesander
Jun 4th, 2007, 08:03 PM
how to use with and end with statement in c#?
jmcilhinney
Jun 4th, 2007, 08:46 PM
There's no such thing as With in C#. You can assign a reference to a local variable and then access that multiple times if you need to avoid evaluating the same expression multiple times, otherwise there's no genuine need for it.