zoukankan      html  css  js  c++  java
  • EscapeCharacters.cs

    /*
     * 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
    {
        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\" ";
            }
        }

    }
  • 相关阅读:
    世纪末的星期
    马虎的算式
    蜜蜂飞舞
    Torry 的困惑
    级数调和
    数列
    最大最小公倍数
    蚂蚁感冒
    12.integer to Roman
    13.Roman to Integer
  • 原文地址:https://www.cnblogs.com/shihao/p/2501430.html
Copyright © 2011-2022 走看看