string problem...!
-
Hi... I have some text i want to add to a string! The text would look like this: But i have no idea how to do it... i would do like this: string a = ""; But that does not work! Can anyone tell me how to add this to a string..? Thanks! QzRz
-
Hi, Put '@' character before the string to inhibate the effect of inner quotes. string a = @""; To add a string to another use String.Concat(string str1 , string str2, .... ); These will work if I got your problem right.
-
well... it does not work... :( i did this: string a = @""; I am using microsoft visual studio .net 2002! And it puts a red line under '1.0" encoding=@"utf-8"?>"' and i cannot debug! Do you have another idea of how to solve this...? Thanks...! QzRz
-
-
Escape the quotation marks. What does that mean? do not understand: string a = ""; :confused: QzRz
Sorry, i forgot to check the "Do not treat <'s as HTML tags" option. Here it is again. string a = "";
-
Sorry, i forgot to check the "Do not treat <'s as HTML tags" option. Here it is again. string a = "";
-
Hi... I have some text i want to add to a string! The text would look like this: But i have no idea how to do it... i would do like this: string a = ""; But that does not work! Can anyone tell me how to add this to a string..? Thanks! QzRz
-
It still gives me same problem! Nomatter if i write: string a = @""; or string a = ""; it still wont work...! QzRz
It's definitely not my day: this time i forgot to escape the quotation marks. Let's give it one more try ;) string a = "";
-
It's definitely not my day: this time i forgot to escape the quotation marks. Let's give it one more try ;) string a = "";