Click or drag to resize

SimpleParseParse Method

A static factory method that performs simple parsing of an argument array and returns an instance of the SimpleParse class containing the parsing results.

Namespace: Orthogonal.Common.Basic
Assembly: Orthogonal.Common.Basic (in Orthogonal.Common.Basic.dll) Version: 2024-04-15 18:00 GMT+10.f27da1471008deaf16b803c17e24a5955690aef1
Syntax
C#
public static SimpleParse Parse(
	params string[] args
)

Parameters

args  String
The string array to parse.

Return Value

SimpleParse
A SimpleParse class instance containing the parsing results.
Remarks
Author's note: The actual parsing code is composed from some rather terse LINQ queries, so some concise comments and helpful source code formatting are applied to avoid revisit frustration.
See Also