Table of Contents

Class stdout

Namespace
Dassie.Core
Assembly
Dassie.Core.dll

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

obj object

The object to dump.

fmt(string, object)

Formats the specified string using the provided formatting argument.

public static string fmt(string format, object arg1)

Parameters

format string

The string to format.

arg1 object

The formatting argument.

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

format string

The string to format.

arg1 object

The first formatting argument.

arg2 object

The 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

format string

The string to format.

args object[]

The formatting arguments.

Returns

string

The formatted string.

print(bool)

Prints the specified boolean to the standard output.

public static void print(bool msg)

Parameters

msg bool

The boolean to print.

print(char)

Prints the specified character to the standard output.

public static void print(char msg)

Parameters

msg char

The character to print.

print(double)

Prints the specified double to the standard output.

public static void print(double msg)

Parameters

msg double

The double to print.

print(int)

Prints the specified integer to the standard output.

public static void print(int msg)

Parameters

msg int

The integer to print.

print(object)

Prints the specified object to the standard output.

public static void print(object msg)

Parameters

msg object

The object to print.

print(float)

Prints the specified float to the standard output.

public static void print(float msg)

Parameters

msg float

The float to print.

print(string)

Prints the specified string to the standard output.

public static void print(string msg)

Parameters

msg string

The 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

format string

The string to format and print.

args object[]

The format arguments.

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

format string

The string to format and print.

args object[]

The format arguments.

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

msg bool

The 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

msg char

The 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

msg double

The 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

msg int

The 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

msg object

The 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

msg float

The 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

msg string

The string to print.

printv(object)

Prints the specified value along with type information to the standard output.

public static void printv(object obj)

Parameters

obj object

The 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

obj object

The value to print.