Using Floats

image_pdfimage_print
   
 
/*
 * C# Programmers Pocket Consultant
 * Author: Gregory S. MacBeth
 * Email: gmacbeth@comporium.net
 * Create Date: June 27, 2003
 * Last Modified Date:
 * Version: 1
 */
using System;

namespace Client.Chapter_1___Common_Type_System
{
  public class UsingFloatsChapter_1___Common_Type_System {
    static void Main(string[] args)
    {
      float MyFloat = 3.281f;
      double MyDouble = 5E-02;
    }
  }
}

           
         
     


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