Using Strings

image_pdfimage_print
   


using System;


  public class UsingStrings
  {
    static void Main(string[] args)
    {
      string MyString = "Hello World";
      string Path = @"c:Program Files";
      string Path2 = "c:Program Files";

      string Name = "Joe";

    }

  }


           
          


This entry was posted in Data Types. Bookmark the permalink.