DirectiveCollection.TryGetValues(String, IReadOnlyList<String>) 方法

定义

获取为给定指令指定的值。 返回值指示是否存在指定的指令名称。

public:
 bool TryGetValues(System::String ^ name, [Runtime::InteropServices::Out] System::Collections::Generic::IReadOnlyList<System::String ^> ^ % values);
public bool TryGetValues (string name, out System.Collections.Generic.IReadOnlyList<string>? values);
member this.TryGetValues : string * IReadOnlyList -> bool
Public Function TryGetValues (name As String, ByRef values As IReadOnlyList(Of String)) As Boolean

参数

name
String

指令的名称。

values
IReadOnlyList<String>

为指定指令提供的值。

返回

true 如果已分析具有指定名称的指令,则为 ;否则为 false

适用于