 | ReflectionUtilsTypedValueToString Method (Object) |
Converts a type to string if possible. This method uses the current culture for numeric and DateTime values.
It calls the ToString() method on common types and uses a type converter on all other objects
if available.
Namespace:
Koden.Utils
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxpublic static string TypedValueToString(
Object rawValue
)
Public Shared Function TypedValueToString (
rawValue As Object
) As String
public:
static String^ TypedValueToString(
Object^ rawValue
)
static member TypedValueToString :
rawValue : Object -> string
Parameters
- rawValue
- Type: SystemObject
The Value or Object to convert to a string
Return Value
Type:
String
string
See Also