Summary
    Splits a string into quoted arguments delimited by spaces.
    
		- Assembly
 - Wyam
.Core .dll  - Namespace
 - Wyam
.Core .Util  - Containing Type
 - ArgumentSplitter
 
Syntax
public static IEnumerable<string> Split(string arguments)
	Parameters
| Name | Type | Description | 
|---|---|---|
| arguments | string | The full string to split into arguments. | 
Return Value
| Type | Description | 
|---|---|
| IEnumerable | 
					Each quoted argument as delimited in the original string by spaces. | 
