I have a c++ templated class:
template class A { void test (T temp) { } };
But i need to wrap it in CLI so it can be used in
What you are using in C# are generics, not templates. There is no way of specializing a C++/CLI template from C#.