A
ad
I have a custom function which accept short as parameter.
for example:
public void myFun(short myShor)
{...}
Now I have a integer (int i), I want to take as the aprameter of myFun,
How can I cast i to short ?
for example:
public void myFun(short myShor)
{...}
Now I have a integer (int i), I want to take as the aprameter of myFun,
How can I cast i to short ?