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.
nameofnew演算子を使用してセッター メソッド名を取得することは可能ですか?
nameof
public object Foo { get; set; } public void Test() { var myMethod = GetType().GetMethod("set_Foo"); }
うまくいくと思い GetType().GetMethod("set_" + nameof(Foo))ますが、もっと簡単なものはありますか?
GetType().GetMethod("set_" + nameof(Foo))
何かのようなもの -
var type = typeof(Test).GetProperties().FirstOrDefault().GetAccessors(false);
のTestはtype のtypeです。property S3string
Test
type
property
S3
string