zoukankan      html  css  js  c++  java
  • 第六章:名命规范

    1--pascal 帕斯卡命名法:第一个单词首字母大写,在类,方法,属性

    2--camel 驼峰命名法:第一个单词首字母小写,变量,参数

    3--c#命名规则:  (1)只能用下划线,字母,数字无线组成,(2)不可以使用保留字  (3)见名知意

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    
    namespace Ant2
    {
        /// <summary>
        /// 1--pascal 帕斯卡命名法;第一个单词首字母大写,在类,方法,属性
        /// 2--camel 驼峰命名法;第一个单词首字母小写,变量,参数
        /// 3--c#命名规则;
        ///    (1)只能用下划线,字母,数字无线组成
        ///    (2)不可以使用保留字
        ///    (3)见名知意
        /// </summary>
        class Program
        {
            static void Main(string[] args)
            {
                int studentld = 1;
                int a = 1;
    
            }
            public void GetStudentlnfo()
            {
            }
            public string VserName { get; set; }
        }
    }
  • 相关阅读:
    jQuery 核心
    Js实现内容向上无缝循环滚动
    浅析CSS postion属性值用法
    JS原生Ajax请求
    详解SQL集合运算
    Windows上开启IIS
    poj 4618 暴力
    hdu 4614 线段树
    poj 3468 线段树
    hdu 1698 线段树成段更新
  • 原文地址:https://www.cnblogs.com/wangqiangya/p/13043009.html
Copyright © 2011-2022 走看看