...quando mi restituisce un Int32 dalla divisione fra due Int32!
Public Shared Function TestDiv() As Double
Dim a As Int32 = 12
Dim b As Int32 = 10
Return a / b
End Function
restituisce (giustamente IMHO) un Double = 1,2
public static Double TestDiv()
{
Int32 a = 12;
Int32 b = 10;
return a / b;
}
restituisce comunque un Double ma uguale a 1, che nella crapa di un informatico potrebbe anche avere un suo perchè, ma nel mondo reale è un'eresia!