hello all
I try to write in messageBox.Show
how to pre prepare the quote ?
thank you
han
//---------------------------
MessageBox.Show(" press Button " + quote + " New" + quote + " to add new customer");
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Amit ChoudharyPosted Dec 1, 2009, 12:51 AM
you can use verbatim string @ for skipping these special characters like " "
eg: Console.Write(@" hi I'm amit using "C-SharpCorner" for Discussions");
or you can use escape sequence character / as:
eg: Console.Write(" hi I\'m amit using \"C-SharpCorner\" for Discussions");
if this is your answer then please mark it as answer....
hanafi tanudjajaPosted Dec 1, 2009, 7:10 AM
thank you ,the second one work with MessageBox.Show
regard
han