public int StrLength(string str)
{
int len = 0;
for (int i = 0; i < str.Length; i++)
{
byte[] byte_len = System.Text.Encoding.Default.GetBytes(str.Substring(i, 1));
if (byte_len.Length > 1)
len += 2;
else
len += 1;
}
return len;
}
{
int len = 0;
for (int i = 0; i < str.Length; i++)
{
byte[] byte_len = System.Text.Encoding.Default.GetBytes(str.Substring(i, 1));
if (byte_len.Length > 1)
len += 2;
else
len += 1;
}
return len;
}