The type of the array
The list.
The string format e.g. in the format '{0:n2}' will output 0.00 0.01 etc...
ToStringArray<T> Method
Outputs a List as a Comma separated string. Used for debug purposes
Syntax
[Extension()]
public static string ToStringArray<T>( 
   IList<T> array,
   string stringFormat
)

Parameters

array
The list.
stringFormat
The string format e.g. in the format '{0:n2}' will output 0.00 0.01 etc...

Type Parameters

T
The type of the array
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also