jonathanlimcy
Programmer
Anyone know the equivalent of Val() function of VB in C#. I tried searching and cannot seems to find it. Please do give me a example or a function. Thanks.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub GetValue()
MessageBox.Show(Val(12332.0))
End Sub
public void GetValue()
{
MessageBox.Show(Conversion.Val(12332.0));
}