Horje
c# list remove duplicate items Code Example
c# list remove duplicate items
List<string> lstWhitDuplicate = new list<string>();
lstWhitDuplicate.add("hallo");
lstWhitDuplicate.add("hallo");
lstWhitDuplicate.add("World");

List<string> lst = lstWhitDuplicate.Distinct().ToList(); 

// output lstWhitDuplicate:
// hallo hallo world
// output lst:
// hallo word




Csharp

Related
trump Code Example trump Code Example
Donald trump Code Example Donald trump Code Example
space custom inspector Code Example space custom inspector Code Example
get directory name of path c# Code Example get directory name of path c# Code Example
string in int c# Code Example string in int c# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12