8000 Update CachedReflectionInfo class with parameter types by iSazonov · Pull Request #9029 · PowerShell/PowerShell · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ internal static class CachedReflectionInfo
internal static readonly ConstructorInfo StreamReader_ctor =
typeof(StreamReader).GetConstructor(new Type[] { typeof(string) });
internal static readonly MethodInfo StreamReader_ReadLine =
typeof(StreamReader).GetMethod(nameof(StreamReader.ReadLine));
typeof(StreamReader).GetMethod(nameof(StreamReader.ReadLine), Type.EmptyTypes);

internal static readonly ConstructorInfo String_ctor_char_int =
typeof(string).GetConstructor(new Type[] { typeof(char), typeof(int) });
Expand Down
0