Converts an object to a string.

Namespace: Simol
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
string ToString(
	Object value
)
Visual Basic
Function ToString ( _
	value As Object _
) As String
Visual C++
String^ ToString(
	Object^ value
)

Parameters

value
Type: System..::..Object
The value to convert.

Return Value

The converted object

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionIf the value parameter is null
System..::..ArgumentExceptionIf the value parameter is an unsupported type

See Also