C# String函数
public static bool IsNullOrEmpty(string value)
如果 true 参数为 value 或空字符串 (""),则为 null;否则为 false。
返回组合后的字符串
decimal temp = 20.4m;
string s = String.Format("The temperature is {0}°C.", temp);
Console.WriteLine(s);
// Displays 'The temperature is 20.4°C.'
Array.Sort(sArr); //升序
Array.Reverse(sArr); //倒置数组内容,就是降序了.