Class stdout
Provides functionality for writing to the standard output.
public static class stdout
- Inheritance
-
stdout
- Inherited Members
Methods
dump(object)
Dumps the properties of the specified object.
public static void dump(object obj)
Parameters
objobjectThe object to dump.
fmt(string, object)
Formats the specified string using the provided formatting argument.
public static string fmt(string format, object arg1)
Parameters
Returns
- string
The formatted string.
fmt(string, object, object)
Formats the specified string using the provided formatting arguments.
public static string fmt(string format, object arg1, object arg2)
Parameters
formatstringThe string to format.
arg1objectThe first formatting argument.
arg2objectThe second formatting argument.
Returns
- string
The formatted string.
fmt(string, params object[])
Formats the specified string using the provided formatting arguments.
public static string fmt(string format, params object[] args)
Parameters
Returns
- string
The formatted string.
print(bool)
Prints the specified boolean to the standard output.
public static void print(bool msg)
Parameters
msgboolThe boolean to print.
print(char)
Prints the specified character to the standard output.
public static void print(char msg)
Parameters
msgcharThe character to print.
print(double)
Prints the specified double to the standard output.
public static void print(double msg)
Parameters
msgdoubleThe double to print.
print(int)
Prints the specified integer to the standard output.
public static void print(int msg)
Parameters
msgintThe integer to print.
print(object)
Prints the specified object to the standard output.
public static void print(object msg)
Parameters
msgobjectThe object to print.
print(float)
Prints the specified float to the standard output.
public static void print(float msg)
Parameters
msgfloatThe float to print.
print(string)
Prints the specified string to the standard output.
public static void print(string msg)
Parameters
msgstringThe string to print.
printf(string, params object[])
Formats the provided string using the specified arguments and prints it to the standard output.
public static void printf(string format, params object[] args)
Parameters
printfn(string, params object[])
Formats the provided string using the specified arguments and prints it, followed by a newline character, to the standard output.
public static void printfn(string format, params object[] args)
Parameters
println()
Prints a newline character to the standard output.
public static void println()
println(bool)
Prints the specified boolean followed by a newline character to the standard output.
public static void println(bool msg)
Parameters
msgboolThe boolean to print.
println(char)
Prints the specified character followed by a newline character to the standard output.
public static void println(char msg)
Parameters
msgcharThe character to print.
println(double)
Prints the specified double followed by a newline character to the standard output.
public static void println(double msg)
Parameters
msgdoubleThe double to print.
println(int)
Prints the specified integer followed by a newline character to the standard output.
public static void println(int msg)
Parameters
msgintThe integer to print.
println(object)
Prints the specified object followed by a newline character to the standard output.
public static void println(object msg)
Parameters
msgobjectThe object to print.
println(float)
Prints the specified float followed by a newline character to the standard output.
public static void println(float msg)
Parameters
msgfloatThe float to print.
println(string)
Prints the specified string followed by a newline character to the standard output.
public static void println(string msg)
Parameters
msgstringThe string to print.
printv(object)
Prints the specified value along with type information to the standard output.
public static void printv(object obj)
Parameters
objobjectThe value to print.
printvn(object)
Prints the specified value along with type information, followed by a newline character, to the standard output.
public static void printvn(object obj)
Parameters
objobjectThe value to print.