SqlSingle Constructors

Definition

Initializes a new instance of the SqlSingle structure using the supplied floating point value.

Overloads

SqlSingle(Double)

Initializes a new instance of the SqlSingle structure using the supplied double parameter.

SqlSingle(Single)

Initializes a new instance of the SqlSingle structure.

SqlSingle(Double)

Source:
SQLSingle.cs
Source:
SQLSingle.cs
Source:
SQLSingle.cs

Initializes a new instance of the SqlSingle structure using the supplied double parameter.

public:
 SqlSingle(double value);
public SqlSingle (double value);
new System.Data.SqlTypes.SqlSingle : double -> System.Data.SqlTypes.SqlSingle
Public Sub New (value As Double)

Parameters

value
Double

A double value which will be used as the Value of the new SqlSingle structure.

See also

Applies to

SqlSingle(Single)

Source:
SQLSingle.cs
Source:
SQLSingle.cs
Source:
SQLSingle.cs

Initializes a new instance of the SqlSingle structure.

public:
 SqlSingle(float value);
public SqlSingle (float value);
new System.Data.SqlTypes.SqlSingle : single -> System.Data.SqlTypes.SqlSingle
Public Sub New (value As Single)

Parameters

value
Single

A floating point number which will be used as the Value of the new SqlSingle structure.

See also

Applies to