Tag: 模糊不清

单个方法即扩展方法之间的调用是模糊的

我有一个类似的扩展方法 public static class Extension { public static string GetTLD(this string str) { var host = new System.Uri(str).Host; int index = host.LastIndexOf(‘.’), last = 3; while (index >= last – 3) { last = index; index = host.LastIndexOf(‘.’, last – 1); } var domain = host.Substring(index + 1); return domain; } } 我称之为 string domain […]