How do you replace an element in a Linked list in C#? While in java either can use set or add method to replace a particular element in the list... I can“t find how do I replace it in C#.
|
Replace value 2 with 3:
|
|||
|
|
There is no
You could also use |
|||||
|
|
With Unlike c#, Java does not have the concept of properties integrated in the language. In Java you create properties by adding hand-made set_Property and get_Property methods. The c# properties can be accessed like fields. Java:
c#:
Internally however, c# calls getter and setter methods as well. You would declare a property like this in c#:
In this special case, when no other logic is involved you can use automatically implemented properties:
In your linked list, you would change the frst element of the list like this:
|
|||
|
|
|
C# allows you to index into Lists using array-style syntax.
|
|||||||||
|
LinkedList<T>class, right? – CodesInChaos Dec 12 '11 at 21:14