
Unity学习
sgclzqq
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C#学习笔记--get/set访问器
C#学习笔记–get/set访问器属性成员提供了get/set访问器来灵活方便的读取、编写某个私有字段的值,同时也保证了方法的安全性和灵活性。写了个小例子加深理解。using System;namespace Class { public class Student { private String name; private int age;原创 2016-07-30 11:49:36 · 926 阅读 · 0 评论 -
C#学习笔记--ArrayList?List<T>?Dictionary
using System; using System.Collections.Generic; using System.Collections; namespace ShuJu { class Program { static void Main(string[] args) { ArrayList list = new Ar原创 2016-08-01 16:33:53 · 274 阅读 · 0 评论