C# does not support template specialization. Is there a workaround? I am interested in achieving something similar to the c++ code below.
Thank you
class C
{
public:
template< typename T > void f() {} // no parameter function
template<> void f<double>() {} // no parameter function
};