C/C++
c_cli.txt
Associated article: C#, CLI (.NET), and C++/CLI Standardization
Tags: C/C++ .NET
Published source code examples accompanying the article by Rex Jaeschke in which he reports on the status of the C#, CLI, and C++/CLI Ecma standardization efforts.
C#, CLI (.NET), and C++/CLI Standardization
by Rex Jaeschke
Example 1:
(a)
public class Stack<ItemType>
{ public void Push(ItemType data) {...}
public ItemType Pop() {...}
}
(b)
Stack<int> s1 = new Stack<int>(...);
s1.Push(100);
int ...


