这是上传文件时的一段代码:如果上传文件为不为空时的情况:string temp=File.PostedFile.FileName.ToString();//filepath
int a=temp.LastIndexOf("\\");//position
temp=temp.Substring(a+1);//filename
int b=temp.LastIndexOf(".");
string bb=temp.Substring(b+1);//file enterprise name
int c=temp.Length;//length
//info.text=bb;
// label.text=temp.ToString();
string cc=temp.Remove(c-bb.Length-1,bb.Length+1);????????
就是后面的这句不明白是什么请给说说???