LoginSignup
5
1

More than 3 years have passed since last update.

C#で自身のクラス名や関数名を取得する

Posted at

実際のクラス名・メソッド名を使用して取得する場合

nameof(クラス名);

クラス名・メソッド名を使用せずに取得する場合

GetType().Namespace; // ネームスペース取得

GetType().Name; // クラス名取得

System.Reflection.MethodBase.GetCurrentMethod().Name; // メソッド名取得
5
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
1