Minggu, 06 Maret 2011

Introducing C# 2.0 Partial Types

IntroductionExamine the example below://definition for BinaryTree.hclass BinaryTree {public:      BinaryTree(void);      ~BinaryTree(void);      int seed;      char* name;      void Load(char* name);      char* Find();  };In C++, class definitions can be separated from the implementations. The above snippet is taken from a file BinaryTree.h which contains all the definitions associated with the

Tidak ada komentar:

Posting Komentar