Hello,
I want to do something like this :
class MyClass
{
void myFunc(int intValue)
{
/* Do something with this int */
}
void myFunc(T: !=int)(T valueNotInt)
{
/* valueNotInt can not be an int */
}
}
Thanks in advance,
TSalm