Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
找不到获取我的 ApplicationName 的方法。找到了一个静态方法来获取和设置应用程序名称,但我不知道如何使用它。
找到了一种非常简单的方法来检索我的应用程序名称:
SqlMembershipProvider msmp = new SqlMembershipProvider(); string appName = msmp.ApplicationName.ToString();
;O)