Illustrates the use of strings 1

image_pdfimage_print

   

/*
Mastering Visual C# .NET
by Jason Price, Mike Gunderloy

Publisher: Sybex;
ISBN: 0782129110
*/

/*
  Example2_9.cs illustrates the use of strings
*/

public class Example2_9
{

  public static void Main()
  {

    string helloWorld = "Hello World!";
    System.Console.WriteLine(helloWorld);

    helloWorld = "Hello World" + " from C#!";
    System.Console.WriteLine(helloWorld);

    helloWorld = "Hello World" + "
 from C#!";
    System.Console.WriteLine(helloWorld);

    const double Pi = 3.14159;
    System.Console.WriteLine("Pi = " + Pi);

  }
}

           
          


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