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)