Hi..
how to generate item numbers based on the item in windows ..
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Poppa WallacePosted Nov 8, 2012, 8:02 AM
using System.Text;
class Program
{
static void Main()
{
var variable = "returnnumber";
Console.WriteLine((int)Encoding.ASCII.GetBytes(variable)[0]);
Console.ReadLine();
}
}
sriPosted Nov 8, 2012, 4:15 AM
Sivaraman DhamodaranPosted Nov 8, 2012, 2:15 AM