标签:
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace struct_enum 8 { 9 /// <struct> 10 /// struct: 值类型 11 /// </struct> 12 struct Person 13 { 14 15 } 16 17 class Program 18 { 19 static void Main(string[] args) 20 { 21 } 22 } 23 }
哈哈哈
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace struct_enum { /// <struct> /// struct: 值类型 /// </struct> struct Person { } class Program { static void Main(string[] args) { } } }
标签:
原文地址:http://www.cnblogs.com/DuanLaoYe/p/5246834.html