C# で 実行中の クラス名 、 メソッド名 を取得する 方法

0 件のコメント

デバッグをするとき、ちょっと必要になったのでメモ。

ファイル名 , クラス名 , メソッド名 の 取得 サンプル

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
namespace MvcApplication.Filters
{
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Reflection;
    using System.Web;
    using System.Web.Mvc;
 
    public class AuthorizeFilterAttribute : FilterAttribute, IAuthorizationFilter
    {
        public void OnAuthorization(AuthorizationContext filterContext)
        {
            // アセンブリファイル名 の 取得
            var fileName = Path.GetFileName(this.GetType().Assembly.Location);
 
            // クラス名 の 取得
            var className = this.GetType().FullName;
 
            // メソッド名 の 取得
            var methodName = MethodBase.GetCurrentMethod().Name;
 
            // デバッグ出力
            System.Diagnostics.Debug.WriteLine("{0,30} {1,30} : {2}", fileName, className, methodName);
        }
    }
}

今回、以下のサイトを参考にしました。

最後に… このブログに興味を持っていただけた方は、 ぜひ 「Facebookページ に いいね!」または 「Twitter の フォロー」 お願いします!!