英勇大米

文章
4
资源
0
加入时间
3年0月9天

C#学习日记19

1.判断某个字符串是否为合法的GUID解析:[1]方法1[Guid.Parse或Guid.TryParse]public static class GuidEx{ public static bool IsGuid(string value) { Guid x; return Guid.TryParse(value, out x); }}[2]方法2[.NET4.0之前版本,构造函数]public static bool TryPars