Table of Contents

implicit operator

Operators
public static implicit operator string(Value value)
Parameters
Type Name Description
Value value
Returns
Type Description
string
public static implicit operator bool(Value value)
Parameters
Type Name Description
Value value
Returns
Type Description
bool
public static implicit operator double(Value value)
Parameters
Type Name Description
Value value
Returns
Type Description
double
public static implicit operator float(Value value)
Parameters
Type Name Description
Value value
Returns
Type Description
float
public static implicit operator int(Value value)
Parameters
Type Name Description
Value value
Returns
Type Description
int
public static implicit operator short(Value value)
Parameters
Type Name Description
Value value
Returns
Type Description
short
public static implicit operator byte(Value value)
Parameters
Type Name Description
Value value
Returns
Type Description
byte
public static implicit operator Enum(Value value)
Parameters
Type Name Description
Value value
Returns
Type Description
Enum
public static implicit operator Value(string value)
Parameters
Type Name Description
string value
Returns
Type Description
Value
public static implicit operator Value(bool value)
Parameters
Type Name Description
bool value
Returns
Type Description
Value
public static implicit operator Value(int value)
Parameters
Type Name Description
int value
Returns
Type Description
Value
public static implicit operator Value(float value)
Parameters
Type Name Description
float value
Returns
Type Description
Value
public static implicit operator Value(double value)
Parameters
Type Name Description
double value
Returns
Type Description
Value
public static implicit operator Value(byte value)
Parameters
Type Name Description
byte value
Returns
Type Description
Value
public static implicit operator Value(short value)
Parameters
Type Name Description
short value
Returns
Type Description
Value
public static implicit operator Value(Enum value)
Parameters
Type Name Description
Enum value
Returns
Type Description
Value