string s = "abcd";//从右到左,逐个截取 for(int i= s.Length-1; i>=0; i--){ string r =s.Substring(i,1); Console.WriteLine(r) }
什么叫“到0值”?