J Jon Skeet Aug 15, 2003 #2 Tony Liu said: Hi, how to determine if a given string is unicode or not? Click to expand... All strings are unicode. Could you give more details about what you really mean?
Tony Liu said: Hi, how to determine if a given string is unicode or not? Click to expand... All strings are unicode. Could you give more details about what you really mean?
J Jack Meyhoff Aug 15, 2003 #3 L"" is a unicode string, S"" is a .net string What is the difference here?
J Jon Skeet Aug 15, 2003 #4 Jack Meyhoff said: L"" is a unicode string, S"" is a .net string Click to expand... That looks like C++ to me, not C#. What is the difference here? Click to expand... I suspect that actually, L"" is a unicode character pointer in C++, and S"" is a reference to a .NET String instance - but I don't know for sure.
Jack Meyhoff said: L"" is a unicode string, S"" is a .net string Click to expand... That looks like C++ to me, not C#. What is the difference here? Click to expand... I suspect that actually, L"" is a unicode character pointer in C++, and S"" is a reference to a .NET String instance - but I don't know for sure.
T Tian Min Huang Aug 15, 2003 #5 Hi Tony, The String class in .NET (System.String) is unicode. Please refer to MSDN documentation: String Class http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/ frlrfsystemstringclasstopic.asp Hope this helps. Regards, HuangTM Microsoft Online Partner Support MCSE/MCSD Get Secure! ¨C www.microsoft.com/security This posting is provided ¡°as is¡± with no warranties and confers no rights.
Hi Tony, The String class in .NET (System.String) is unicode. Please refer to MSDN documentation: String Class http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/ frlrfsystemstringclasstopic.asp Hope this helps. Regards, HuangTM Microsoft Online Partner Support MCSE/MCSD Get Secure! ¨C www.microsoft.com/security This posting is provided ¡°as is¡± with no warranties and confers no rights.