次のようなメソッドシグネチャを使用します。
public interface TestInterface
{
void SampleMethodOut(out int? nullableInt);
void SampleMethod(int? nullableInt);
}
私はtypeof(TestInterface).GetMethods()[1].GetParameters()[0].ParameterType
タイプを取得するために使用していて、それからチェックIsGenericType
してNullable.GetUnderlyingType
。outパラメータを使用したメソッドでこれを行うにはどうすればよいですか?