摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 泛型{ class Stack { private object[] items; ... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 装箱拆箱{ //装箱与拆箱 //装箱(boxing)和拆箱(unboxing)的概念是 C# 的类型系统... 阅读全文