摘要: public static bool CheckVin(string vin) { if (vin == null || vin.Length != 17) return false; int symbol, weight, verify, sum = 0; bool isRepeat = true 阅读全文
posted @ 2019-06-28 17:26 沈三公子 阅读(1897) 评论(0) 推荐(0)
摘要: private static Dictionary<char, int> kvDic = new Dictionary<char, int>{ {'0', 0}, {'1', 1}, {'2', 2}, {'3', 3}, {'4', 4}, {'5', 5}, {'6', 6}, {'7', 7} 阅读全文
posted @ 2019-06-28 17:24 沈三公子 阅读(298) 评论(0) 推荐(0)