##実際のクラス名・メソッド名を使用して取得する場合
nameof(クラス名);
##クラス名・メソッド名を使用せずに取得する場合
GetType().Namespace; // ネームスペース取得
GetType().Name; // クラス名取得
System.Reflection.MethodBase.GetCurrentMethod().Name; // メソッド名取得
Go to list of users who liked
More than 3 years have passed since last update.
##実際のクラス名・メソッド名を使用して取得する場合
nameof(クラス名);
##クラス名・メソッド名を使用せずに取得する場合
GetType().Namespace; // ネームスペース取得
GetType().Name; // クラス名取得
System.Reflection.MethodBase.GetCurrentMethod().Name; // メソッド名取得
Register as a new user and use Qiita more conveniently
Go to list of users who liked