How could i convert data from string to long in C#?
I have data
String strValue[i] =\"1100.25\";
now i want it in
long
http://msdn.microsoft.com/en-us/library/system.convert.aspx
l1 = Convert.ToInt64(strValue)
Though the example you gave isn't an integer, so I'm not sure why you want it as a long.