4 references to GetDeclaredMethod
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (2)
ExpressionEvaluatorFatalError.cs (2)
31
var openSubKeyMethod = currentUserKey.GetType().GetTypeInfo().
GetDeclaredMethod
("OpenSubKey", [typeof(string), typeof(bool)]);
36
var getValueMethod = eeKey.GetType().GetTypeInfo().
GetDeclaredMethod
("GetValue", [typeof(string)]);
Microsoft.CodeAnalysis.Scripting (2)
Hosting\ObjectFormatter\ObjectFormatterHelpers.cs (2)
35
if (type.
GetDeclaredMethod
("ToString", Type.EmptyTypes) != null)
160
var method = currentType.
GetDeclaredMethod
(memberName, Type.EmptyTypes);