标签:
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace ClassTrining 7 { 8 class 字段 9 { 10 private int 编号 = 1; 11 public string 姓名 = "林宏权"; 12 public string 手机号 = "13888888888"; 13 public decimal 工资 = 13890; 14 public double 工龄 = 12.93; 15 } 16 17 }
标签:
原文地址:http://www.cnblogs.com/linhongquan/p/5470640.html