- 博客(3)
- 收藏
- 关注
原创 c# 托举
c# 托举 `using System; namespace lesoo3{ public delegate void Something (string name); public Student(string name){ public void Do (Something something){ something(name); } public
2017-11-26 11:15:46
208
原创 c# ArrayList
ArrayList 与Listusing System;using System.Collections.Generic;using System.Collections;namespace lesson2{public class Person{}class MainClass{public Static void main (string[] args){//申明一个List对象
2017-11-26 10:41:48
214
原创 c#索引器
索引器using Systemnamespace lesson{public class Array{//索引器public int this[int index] { set{//value为引用后数值; _arr[index]=value; } get { return _arr[index]; }
2017-11-21 11:07:38
188
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人