.NET平台
根据微软的定义:.NET is a“revolutionary new platform,built on open Internet protocols and standards,with tools and services that meld computing and communications in new ways”, ...……
C#泛型演示
class Stackamp;amp;lt;Tamp;amp;gt;{ private T store; private int size public Stack() { store = new T; size = 0; }
public void Push(T x) { store = x; }
...……