매개 변수없이 MethodInfo.Invoke 내가하려는 예제 코드는 내 영어보다 확실히 더 잘할 것입니다. public bool IsNumericValueInBounds (string value, Type numericType) { double d = double.NaN; bool inBounds = (bool)numericType.GetMethod ("TryParse").Invoke (null, new object[] { value, d }); return inBounds; } 불행히도 TryParse 메서드에는 out 매개 변수가 필요하므로 작동하지 않습니다. 이것을 해결하는 방법에 대한 아이디어가 있습니까? (ps .: 이것은 오리 타이핑에 대한 좋은 예가 아닐까요?-모든 numericType에 ..