How do you convert a float to a string in C sharp
Thanks
float x = 5.0F,
x.ToString ();
1 Like
Debug.Log( aNumberVar.ToString() );
thanks a lot
How do you convert a float to a string in C sharp
Thanks
float x = 5.0F,
x.ToString ();
Debug.Log( aNumberVar.ToString() );
thanks a lot