Pazi, posto je string u pitanju koji moze ali ne mora da bude unicode, moras da ga 'konvertujes' u ASCII, nesto kao:
Code:
private static string CheckSum(string strASCII)
{
int checkSum = 0;
foreach(byte b in System.Text.Encoding.ASCII.GetBytes(strASCII))
checkSum += (int)b;
return checkSum.ToString();
}
Je'l radi posao ?

Live long and prosper :)