templates in managed c++

  • Thread starter Thread starter amey kale
  • Start date Start date
A

amey kale

i want to create template in managed c++.

i have created code like this--


template<class t>

void function(t a __gc[])
{.........}


but compiler is giving me error.


so is threre in any way to create template in managed c++


thank you
 
Nope.

..NET 2.0 will provide generics for this, but they're not around yet.

Steve
 
Back
Top