Dim eggs As Decimal = 62 Dim Charles As Integer = eggs.ToString MessageBox.Show(Charles)
Your notes at the top are a good intro. However the code doesn't work when I paste it into Visual Studio. I'm looking for code as follows:Dim eggs as Decimal = 12Dim Charles as String = eggs.ToStringMessageBox.Show(Charles)or Dim eggs as Decimal = 12Dim Charles as String = CStr(eggs)MessageBox.Show(Charles)Also.. you need to have your code in the code formatter box so that its more readable.
Your notes at the top are a good intro. However the code doesn't work when I paste it into Visual Studio. I'm looking for code as follows:
ReplyDeleteDim eggs as Decimal = 12
Dim Charles as String = eggs.ToString
MessageBox.Show(Charles)
or
Dim eggs as Decimal = 12
Dim Charles as String = CStr(eggs)
MessageBox.Show(Charles)
Also.. you need to have your code in the code formatter box so that its more readable.