NVelocity.App.Tools.VelocityFormatter.FormatArray C# (CSharp) Method

FormatArray() public method

Formats an array into the form "A, B and C".
public FormatArray ( Object array ) : String
array Object An Object.
return String
		public String FormatArray(Object array)
		{
			return FormatArray(array, ", ", " and ");
		}

Same methods

VelocityFormatter::FormatArray ( Object array, String delim ) : String
VelocityFormatter::FormatArray ( Object array, String delim, String finaldelim ) : String