TemplateExpressionParser.Parse(String) Method

Definition

Parses a string template and retrieves a collection of arg values.

public static System.Collections.Generic.List<string> Parse (string template);
static member Parse : string -> System.Collections.Generic.List<string>
Public Shared Function Parse (template As String) As List(Of String)

Parameters

template
String

The string template of the form {<func>(<arg1>, <arg2>, <argn>)}.

Returns

List<String>

An object containing the values <func> and a collection of arg values.

Applies to