摘要: Guideline 1.5 - Safety - Developer Information The support URL specified in your app’s metadata, https://xxxxxxxxxx, does not properly navigate to the 阅读全文
posted @ 2023-01-04 18:15 liskov_design 阅读(3446) 评论(0) 推荐(0)
摘要: class A // 基类First { ~A() // 析构函数 { Console.WriteLine("~A()析构函数"); } public A() { // 构造函数 Console.WriteLine("A()构造函数"); } } class B : A // B类从A类派生 { ~ 阅读全文
posted @ 2023-01-04 17:57 liskov_design 阅读(25) 评论(0) 推荐(0)
摘要: //Decimal类型的值处理为财务的四舍五入,保留2位小数,不足补0的处理 public static string op_moneyx(this Decimal x) { string str = string.Concat((object) Math.Round(x, 2, MidpointR 阅读全文
posted @ 2023-01-04 11:02 liskov_design 阅读(351) 评论(0) 推荐(0)