S
Steven Nagy
private void Test(short i, short j)
{
short k = i + j;
}
What the hell is wrong with this code?
"Can not implicitly convert type int to short" is the compile error.
ASP.NET 1.1 C#
Thanks
{
short k = i + j;
}
What the hell is wrong with this code?
"Can not implicitly convert type int to short" is the compile error.
ASP.NET 1.1 C#
Thanks