generic interface demo : Generic Interface « Generics « Visual C++ .NET






generic interface demo

 

#include "stdafx.h"
generic <typename T>
public interface class IGInterface
{
   property T InnerObject;
};

   
  








Related examples in the same category

1.interface with overloaded operator
2.interface constraint