Re: Displaying a value stored in a variable
- From: "Lars-Inge Tønnessen \(VJ# MVP\)" <http://emailme.larsinge.com>
- Date: Sun, 19 Mar 2006 18:19:50 +0100
int x = 6;
// Example 1
System.Windows.Forms.MessageBox.Show("" + x);
// Example 2
System.Text.StringBuilder sb = new System.Text.StringBuilder();
sb.Append(x);
System.Windows.Forms.MessageBox.Show(sb.toString());
Regards,
Lars-Inge Tønnessen
.
- References:
- Displaying a value stored in a variable
- From: ByTe
- Displaying a value stored in a variable
- Prev by Date: Re: serial port usage
- Next by Date: Re: DecimalFormat ignoring exponent?
- Previous by thread: Re: Displaying a value stored in a variable
- Next by thread: Re: testing for connection
- Index(es):
Loading