H
Harry J. Smith
How do you overload the = operator?
public static MultiUI operator = (MultiUI left, MultiUI right)
{
return right;
}
gives an error of "overloadable binary operator expected"
-Harry
public static MultiUI operator = (MultiUI left, MultiUI right)
{
return right;
}
gives an error of "overloadable binary operator expected"
-Harry