04 2024 档案

摘要: 阅读全文
posted @ 2024-04-05 10:38 過朢 阅读(4) 评论(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 過朢 阅读(9) 评论(0) 推荐(0) 编辑
摘要:1.需要引用 using System.Web.SessionState; 2在类后接 IRequiresSessionState 由public class Handler : IHttpHandler变为 public class Handler : IHttpHandler,IRequires 阅读全文
posted @ 2024-04-05 10:33 過朢 阅读(7) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示