Escape Characters : Char : Data Types C# Source Code


Custom Search

C# Source Code » Data Types » Char »

 

Escape Characters








    

/*
 * 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 EscapeCharacters {
    static void Main(string[] args)
    {
      char MyChar = '\0';
      string MyString = @"C:\MyFiles";
      string MYString2 = "c:\\Program Files";
      string MyString3 = " \"To Be or Not To Be, That Is The Question\" ";
    }
  }

}

           
       
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Data Types
» Char