Nov 22, 2005 #1 smsaji Programmer Jun 26, 2005 91 CA Hi, what should be the return data type of a function returning unicode characters. any hints appreciated. thanks saj
Hi, what should be the return data type of a function returning unicode characters. any hints appreciated. thanks saj
Nov 22, 2005 1 #2 Guru7777 Programmer Dec 10, 2003 331 US I would say char. The char data type is a Unicode character (16 bits). Click to expand... This is a helpful link, as well, I hope. http://www.codeproject.com/csharp/multilingual.asp ---------------------------------------- TWljcm8kb2Z0J3MgIzEgRmFuIQ== Upvote 0 Downvote
I would say char. The char data type is a Unicode character (16 bits). Click to expand... This is a helpful link, as well, I hope. http://www.codeproject.com/csharp/multilingual.asp ---------------------------------------- TWljcm8kb2Z0J3MgIzEgRmFuIQ==
Nov 22, 2005 1 #3 chiph Programmer Jun 9, 1999 9,878 US Of if you have a bunch of them, the return type could be an array of char: char[] or simply string Chip H. ____________________________________________________________________ Donate to Katrina relief: http://s1.amazon.com/paypage/PELYGQVJ8Q7IB/103-6821258-5919825If you want to get the best response to a question, please read FAQ222-2244 first Upvote 0 Downvote
Of if you have a bunch of them, the return type could be an array of char: char[] or simply string Chip H. ____________________________________________________________________ Donate to Katrina relief: http://s1.amazon.com/paypage/PELYGQVJ8Q7IB/103-6821258-5919825If you want to get the best response to a question, please read FAQ222-2244 first
Nov 22, 2005 Thread starter #4 smsaji Programmer Jun 26, 2005 91 CA thank you guru7777 and chiph. Upvote 0 Downvote