Method print.list(+ 1 overload)
Overload
Writes an array or generic collection to the output, as a list of items separated by separator.
public static void list<T>(string separator, IEnumerable<T> value)
Parameters
separator (string) |
value (IEnumerable<T>)
Array or generic collection of any type. If |
Type Parameters
T |
Overload(top)
Writes multiple arguments of any type to the output, using separator.
public static void list(string separator, object value1, object value2, params object[] more)
Parameters
Remarks
If a value is null
, writes "null"
.
If a value is unsigned integer (uint, ulong, ushort, byte, nuint), writes in hexadecimal format with prefix "0x"
.