Click or drag to resize

SimpleParse.Parse 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: 2025-03-15 14:42 GMT+11
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