how to convert value 10 into ascii value
-
hi every body i want to send ascii value of 10 plz help me how can i got ascii value of 10 that means "LF" in VC#.net plz help me Prem
-
hi every body i want to send ascii value of 10 plz help me how can i got ascii value of 10 that means "LF" in VC#.net plz help me Prem
ToString
-
hi every body i want to send ascii value of 10 plz help me how can i got ascii value of 10 that means "LF" in VC#.net plz help me Prem
system.convert.tochar(10); ? is this what you are looking for Russ
-
hi every body i want to send ascii value of 10 plz help me how can i got ascii value of 10 that means "LF" in VC#.net plz help me Prem
"\u000a" and '\u000a' however those are in unicode. To get the ascii value you would need to use an Ascii Encoder and grab the bytes but why bother, just write 0xa to the stream.
File Not Found