PropertyValue

PropertyValue(int)

Initializes a new instance of the PropertyValue class with an integer value.

public PropertyValue(int value)
Parameter Type Description
value Int32 An Int32 value.

See Also


PropertyValue(long)

Initializes a new instance of the PropertyValue class with a long value.

public PropertyValue(long value)
Parameter Type Description
value Int64 A Int64 value.

See Also


PropertyValue(bool)

Initializes a new instance of the PropertyValue class with a boolean value.

public PropertyValue(bool value)
Parameter Type Description
value Boolean A Boolean value.

See Also


PropertyValue(double)

Initializes a new instance of the PropertyValue class with a double value.

public PropertyValue(double value)
Parameter Type Description
value Double A Double value.

See Also


PropertyValue(string)

Initializes a new instance of the PropertyValue class with a string value.

public PropertyValue(string value)
Parameter Type Description
value String A String value.

See Also


PropertyValue(DateTime)

Initializes a new instance of the PropertyValue class with a DateTime value.

public PropertyValue(DateTime value)
Parameter Type Description
value DateTime A DateTime value.

See Also


PropertyValue(TimeSpan)

Initializes a new instance of the PropertyValue class with a TimeSpan value.

public PropertyValue(TimeSpan value)
Parameter Type Description
value TimeSpan A TimeSpan value.

See Also


PropertyValue(string[])

Initializes a new instance of the PropertyValue class with a string array.

public PropertyValue(string[] values)
Parameter Type Description
values String[] A string array.

See Also


PropertyValue(byte[])

Initializes a new instance of the PropertyValue class with a byte array.

public PropertyValue(byte[] values)
Parameter Type Description
values Byte[] A byte array.

See Also


PropertyValue(double[])

Initializes a new instance of the PropertyValue class with an array of double values.

public PropertyValue(double[] values)
Parameter Type Description
values Double[] An array of double values.

See Also


PropertyValue(int[])

Initializes a new instance of the PropertyValue class with an array of integer values.

public PropertyValue(int[] values)
Parameter Type Description
values Int32[] An array of integer values.

See Also


PropertyValue(long[])

Initializes a new instance of the PropertyValue class with an array of long values.

public PropertyValue(long[] values)
Parameter Type Description
values Int64[] An array of long values.

See Also


PropertyValue(ushort[])

Initializes a new instance of the PropertyValue class with an array of ushort values.

public PropertyValue(ushort[] values)
Parameter Type Description
values UInt16[] An array of ushort values.

See Also