public int calStrLen(string Str)
{
int i=0;
if(Str==null)
{
return i;
}
else
{
foreach(char c in Str)
{
if(c>0x4e00&&c<=0x9fa5)
{
i++;
}
i++;
}
return i;
}
}
public int calStrLen(string Str)
{
int i=0;
if(Str==null)
{
return i;
}
else
{
foreach(char c in Str)
{
if(c>0x4e00&&c<=0x9fa5)
{
i++;
}
i++;
}
return i;
}
}