Say I've got this array: MyArray(0)="aaa" MyArray(1)="bbb" MyArray(2)="aaa"
Is there a .net function which can give me the unique values? I would like something like this as an output of the function: OutputArray(0)="aaa" OutputArray(1)="bbb"
|
|
|
|
|
|
|
Assuming you have .Net 3.5/LINQ:
|
||
|
|
|
|
A solution could be to use LINQ as in the following example:
That would print the expected:
|
||
|
|
|
|
Use the HashSet class included in .NET 3.5. |
||
|
|
|
|
You could use a dictionary to add them with a key, and when you add them check if the key already exists.
|
||
|
|