Use int variable

image_pdfimage_print

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

Publisher: Sybex;
ISBN: 0782129110
*/

public class Example2_1
{

  public static void Main()
  {

    int count = 1;
    System.Console.WriteLine("count = " + count);

  }

}

           
         
     


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