Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望有一个字符可以用来在列表中排序时将字符串作为最后一项。请注意,这不一定是防弹的,但考虑到例如+,_,(等通常用于在文本之前放置一个字符串(在 ASCII/NTFS 等中)是否有一个字符可以用来在末尾放置一个字符串?
+,_,(
试试这个:
Char.ConvertFromUtf32(int.MaxValue);
给出:
有效的 UTF32 值介于 0x000000 和 0x10ffff(含)之间,并且不应包括代理代码点值(0x00d800 ~ 0x00dfff)。
然后我想你需要的是这样的:
Char.ConvertFromUtf32(0x10ffff);