JsonHelperiJsonSerializeT Method |
Serializes object to string
Namespace:
TreeksLicensingLibrary2
Assembly:
TreeksLicensingLibrary2 (in TreeksLicensingLibrary2.dll) Version: 2.1.8318.42066 (2.1.0.0)
Syntax public string iJsonSerialize<T>(
T tp
)
Public Function iJsonSerialize(Of T) (
tp As T
) As String
public:
generic<typename T>
String^ iJsonSerialize(
T tp
)
member iJsonSerialize :
tp : 'T -> string
Parameters
- tp
- Type: T
Object to serialze
Type Parameters
- T
- Type of object
Return Value
Type:
StringString represenation of supplied object
Remarks The "i" named functions are here to allow access to static members in COM applications. In .NET applications you can call static methods directly and don't need to instantiate this class.
See Also