V
Vivek
How do I update a current item in the LIST<T>?
Thanks
Thanks
Nicholas Paldino said:Viviek,
If T is a value type, then you have to store the value type to a temp
variable and then set it back when you are done making changes to it. If it
is a reference type, you can use the indexer and just access the item
directly from that.
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)
Vivek said:How do I update a current item in the LIST<T>?
Thanks