You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/System.CommandLine/Parsing/ParseResult.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,7 @@ internal T GetValueFor<T>(IValueDescriptor<T> symbol) =>
97
97
publicobject?ValueForOption(stringalias)=>
98
98
ValueForOption<object?>(alias);
99
99
100
-
[Obsolete("This method is obsolete and will be removed in a future version. Please use ParseResult.GetValueForOption<T>(Option) instead. For details see https://github.com/dotnet/command-line-api/issues/1127")]
100
+
[Obsolete("This method is obsolete and will be removed in a future version. Please use ParseResult.GetValueForOption<T>(IOption) instead. For details see https://github.com/dotnet/command-line-api/issues/1127")]
101
101
publicobject?ValueForOption(Optionoption)=>
102
102
GetValueForOption<object?>(option);
103
103
@@ -112,7 +112,7 @@ internal T GetValueFor<T>(IValueDescriptor<T> symbol) =>
0 commit comments