How to get distinct characters?

前端 未结 9 1948
南旧
南旧 2020-12-10 10:21

I have a code like

string code = \"AABBDDCCRRFF\";

In this code, I want to retrieve only distinct characters

The Output should be l

9条回答
  •  不思量自难忘°
    2020-12-10 11:02

    Linq's Distinct returns distinct elements from a sequence. As the String class implements IEnumerable, Distinct in this context returns an IEnumerable containing all of the unique characters in the string.

    code.Distinct();
    

提交回复
热议问题