How can I get ASCII codes of a string I'm taking as an input from user(via textBox1)?
string abc= textBox1.Text;
block1.Text=abc ;
{
block1.Text=b.ToString();
}
I tried this code but I keep on getting the error msg:
The name 'b' does not exist in the current context
I am using Visual Studio 2012 Ultimate to create a XAML(Windows Store) project.