摘要: 阅读全文
posted @ 2024-04-05 10:38 過朢 阅读(11) 评论(0) 推荐(0)
摘要: public static long Face(int n) { if (n <= 1) { return 1; } else { return n * Face(n-1); } } 阅读全文
posted @ 2024-04-05 10:35 過朢 阅读(20) 评论(0) 推荐(0)
摘要: 1.需要引用 using System.Web.SessionState; 2在类后接 IRequiresSessionState 由public class Handler : IHttpHandler变为 public class Handler : IHttpHandler,IRequires 阅读全文
posted @ 2024-04-05 10:33 過朢 阅读(17) 评论(0) 推荐(0)