.NET语句 求解析 20分

来源:百度知道 编辑:UC知道 时间:2024/05/28 17:13:20
string str = "evilten";
string str4 = str.Insert(0, "www.").Insert(11, ".com");
string str5 = "";
for (int i = 0; i < str4.Length; i++)
{
str5 = str5 + ((char) (str4[i] + '情'));
--------------------------------------------------------
string s1 = "evilten";
string s2 = s1.Insert(0, "www.");
string s3 = s2.Insert(11, ".com");
string s4 = s3;
string s5 = "";
int i = 0;
while (flag)
{
s5 = String.Concat(s5, (ushort)(s4[i] + 24773));
i++;
flag = i < s4.Length;
------------
上面俩个都是一个程序反编译出来的,谁能帮忙解释下谢了。
string str = "evilten";
string str4 = str.Insert(0, "www.").Insert(11, ".com");
string s

string str = "evilten";
string str4 = str.Insert(0, "www.").Insert(11, ".com");//将str4组合成 www.evilten.com
string str5 = "";
for (int i = 0; i < str4.Length; i++)
{
str5 = str5 + ((char) (str4[i] + '情')); //str5="w情w情w情.情e情v情i情l情t情e情n情.情c情o情m情" 至于为什么这样,要看下边代码。你没给完
--------------------------------------------------------
string s1 = "evilten";
string s2 = s1.Insert(0, "www.");
string s3 = s2.Insert(11, ".com");
string s4 = s3; //s4="www.evilten.com
"
string s5 = "";
int i = 0;
while (flag)
{
s5 = String.Concat(s