Results 1 to 3 of 3

Thread: How i add the sign " (quoat) to the string ?

  1. #1

    Thread Starter
    New Member
    Join Date
    Nov 2002
    Posts
    6

    How i add the sign " (quoat) to the string ?

    How i add the sign " (quoat) to the string ?

  2. #2
    PowerPoster Lethal's Avatar
    Join Date
    Oct 2000
    Location
    Ohio
    Posts
    2,496
    Insert the escape sequence \" as an embedded quotation mark:

    Code:
    string s = "\"Hello World\"";
    Console.WriteLine(s);
    This is only one way, there are a few others.

  3. #3
    Frenzied Member DevGrp's Avatar
    Join Date
    Nov 2001
    Location
    Charlotte, NC
    Posts
    1,256
    This might also work
    Code:
    String quote = @""Quote"";
    Dont gain the world and lose your soul

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width