Removing duplicates from a list collection

后端 未结 4 1958
天命终不由人
天命终不由人 2021-01-21 02:37

Hope someone can help me. I am using c# and I am somewhat new to it. I am loading a text file into my app and splitting the data on \",\" I am reading part of string into a

4条回答
  •  终归单人心
    2021-01-21 03:25

    Here's an article with some examples and explanations in C#. Basically, you just keep track of the uniques, and check each element.

    Alex

提交回复
热议问题