ParameterView.TryGetValue<TValue>(String, TValue) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取具有指定名称的参数的值。
public:
generic <typename TValue>
bool TryGetValue(System::String ^ parameterName, [Runtime::InteropServices::Out] TValue % result);
public bool TryGetValue<TValue> (string parameterName, out TValue result);
member this.TryGetValue : string * 'Value -> bool
Public Function TryGetValue(Of TValue) (parameterName As String, ByRef result As TValue) As Boolean
类型参数
- TValue
值的类型。
参数
- parameterName
- String
参数的名称。
- result
- TValue
接收结果(如果有)。
返回
如果找到匹配的参数,则为 True;否则为 false。