C# Class System.Data.SqlTypes.SqlMoney

Afficher le fichier Open project: dotnet/corefx Class Usage Examples

Méthodes publiques

Свойство Type Description
MaxValue SqlMoney
MinValue SqlMoney
Null SqlMoney
Zero SqlMoney

Méthodes publiques

Méthode Description
Add ( SqlMoney x, SqlMoney y ) : SqlMoney
CompareTo ( SqlMoney value ) : int
CompareTo ( object value ) : int
Divide ( SqlMoney x, SqlMoney y ) : SqlMoney
Equals ( SqlMoney x, SqlMoney y ) : SqlBoolean
Equals ( object value ) : bool
GetHashCode ( ) : int
GetXsdType ( XmlSchemaSet schemaSet ) : XmlQualifiedName
GreaterThan ( SqlMoney x, SqlMoney y ) : SqlBoolean
GreaterThanOrEqual ( SqlMoney x, SqlMoney y ) : SqlBoolean
LessThan ( SqlMoney x, SqlMoney y ) : SqlBoolean
LessThanOrEqual ( SqlMoney x, SqlMoney y ) : SqlBoolean
Multiply ( SqlMoney x, SqlMoney y ) : SqlMoney
NotEquals ( SqlMoney x, SqlMoney y ) : SqlBoolean
Parse ( string s ) : SqlMoney
SqlMoney ( decimal value ) : System.Data.Common

Initializes a new instance of the class with the value given.

SqlMoney ( double value ) : System.Data.Common

Initializes a new instance of the class with the value given.

SqlMoney ( int value ) : System.Data.Common

Initializes a new instance of the class with the value given.

SqlMoney ( long value ) : System.Data.Common

Initializes a new instance of the class with the value given.

Subtract ( SqlMoney x, SqlMoney y ) : SqlMoney
ToDecimal ( ) : decimal
ToDouble ( ) : double
ToInt32 ( ) : int
ToInt64 ( ) : long
ToSqlBoolean ( ) : SqlBoolean
ToSqlByte ( ) : SqlByte
ToSqlDecimal ( ) : SqlDecimal
ToSqlDouble ( ) : SqlDouble
ToSqlInt16 ( ) : SqlInt16
ToSqlInt32 ( ) : SqlInt32
ToSqlInt64 ( ) : SqlInt64
ToSqlSingle ( ) : SqlSingle
ToSqlString ( ) : SqlString
ToString ( ) : string
operator ( ) : SqlBoolean
operator ( ) : SqlMoney

Private Methods

Méthode Description
IXmlSerializable ( ) : XmlSchema
IXmlSerializable ( XmlReader reader ) : void
IXmlSerializable ( XmlWriter writer ) : void
SqlMoney ( bool fNull ) : System.Data.Common
SqlMoney ( long value, int ignored ) : System.Data.Common
ToSqlInternalRepresentation ( ) : long

Method Details

Add() public static méthode

public static Add ( SqlMoney x, SqlMoney y ) : SqlMoney
x SqlMoney
y SqlMoney
Résultat SqlMoney

CompareTo() public méthode

public CompareTo ( SqlMoney value ) : int
value SqlMoney
Résultat int

CompareTo() public méthode

public CompareTo ( object value ) : int
value object
Résultat int

Divide() public static méthode

public static Divide ( SqlMoney x, SqlMoney y ) : SqlMoney
x SqlMoney
y SqlMoney
Résultat SqlMoney

Equals() public static méthode

public static Equals ( SqlMoney x, SqlMoney y ) : SqlBoolean
x SqlMoney
y SqlMoney
Résultat SqlBoolean

Equals() public méthode

public Equals ( object value ) : bool
value object
Résultat bool

GetHashCode() public méthode

public GetHashCode ( ) : int
Résultat int

GetXsdType() public static méthode

public static GetXsdType ( XmlSchemaSet schemaSet ) : XmlQualifiedName
schemaSet XmlSchemaSet
Résultat XmlQualifiedName

GreaterThan() public static méthode

public static GreaterThan ( SqlMoney x, SqlMoney y ) : SqlBoolean
x SqlMoney
y SqlMoney
Résultat SqlBoolean

GreaterThanOrEqual() public static méthode

public static GreaterThanOrEqual ( SqlMoney x, SqlMoney y ) : SqlBoolean
x SqlMoney
y SqlMoney
Résultat SqlBoolean

LessThan() public static méthode

public static LessThan ( SqlMoney x, SqlMoney y ) : SqlBoolean
x SqlMoney
y SqlMoney
Résultat SqlBoolean

LessThanOrEqual() public static méthode

public static LessThanOrEqual ( SqlMoney x, SqlMoney y ) : SqlBoolean
x SqlMoney
y SqlMoney
Résultat SqlBoolean

Multiply() public static méthode

public static Multiply ( SqlMoney x, SqlMoney y ) : SqlMoney
x SqlMoney
y SqlMoney
Résultat SqlMoney

NotEquals() public static méthode

public static NotEquals ( SqlMoney x, SqlMoney y ) : SqlBoolean
x SqlMoney
y SqlMoney
Résultat SqlBoolean

Parse() public static méthode

public static Parse ( string s ) : SqlMoney
s string
Résultat SqlMoney

SqlMoney() public méthode

Initializes a new instance of the class with the value given.
public SqlMoney ( decimal value ) : System.Data.Common
value decimal
Résultat System.Data.Common

SqlMoney() public méthode

Initializes a new instance of the class with the value given.
public SqlMoney ( double value ) : System.Data.Common
value double
Résultat System.Data.Common

SqlMoney() public méthode

Initializes a new instance of the class with the value given.
public SqlMoney ( int value ) : System.Data.Common
value int
Résultat System.Data.Common

SqlMoney() public méthode

Initializes a new instance of the class with the value given.
public SqlMoney ( long value ) : System.Data.Common
value long
Résultat System.Data.Common

Subtract() public static méthode

public static Subtract ( SqlMoney x, SqlMoney y ) : SqlMoney
x SqlMoney
y SqlMoney
Résultat SqlMoney

ToDecimal() public méthode

public ToDecimal ( ) : decimal
Résultat decimal

ToDouble() public méthode

public ToDouble ( ) : double
Résultat double

ToInt32() public méthode

public ToInt32 ( ) : int
Résultat int

ToInt64() public méthode

public ToInt64 ( ) : long
Résultat long

ToSqlBoolean() public méthode

public ToSqlBoolean ( ) : SqlBoolean
Résultat SqlBoolean

ToSqlByte() public méthode

public ToSqlByte ( ) : SqlByte
Résultat SqlByte

ToSqlDecimal() public méthode

public ToSqlDecimal ( ) : SqlDecimal
Résultat SqlDecimal

ToSqlDouble() public méthode

public ToSqlDouble ( ) : SqlDouble
Résultat SqlDouble

ToSqlInt16() public méthode

public ToSqlInt16 ( ) : SqlInt16
Résultat SqlInt16

ToSqlInt32() public méthode

public ToSqlInt32 ( ) : SqlInt32
Résultat SqlInt32

ToSqlInt64() public méthode

public ToSqlInt64 ( ) : SqlInt64
Résultat SqlInt64

ToSqlSingle() public méthode

public ToSqlSingle ( ) : SqlSingle
Résultat SqlSingle

ToSqlString() public méthode

public ToSqlString ( ) : SqlString
Résultat SqlString

ToString() public méthode

public ToString ( ) : string
Résultat string

operator() public static méthode

public static operator ( ) : SqlBoolean
Résultat SqlBoolean

operator() public static méthode

public static operator ( ) : SqlMoney
Résultat SqlMoney

Property Details

MaxValue public_oe static_oe property

Represents the maximum value that can be assigned to the property of an instance of the class.
public static SqlMoney,System.Data.SqlTypes MaxValue
Résultat SqlMoney

MinValue public_oe static_oe property

Represents the minimum value that can be assigned to property of an instance of the class.
public static SqlMoney,System.Data.SqlTypes MinValue
Résultat SqlMoney

Null public_oe static_oe property

Represents a null value that can be assigned to the property of an instance of the class.
public static SqlMoney,System.Data.SqlTypes Null
Résultat SqlMoney

Zero public_oe static_oe property

Represents the zero value that can be assigned to the property of an instance of the class.
public static SqlMoney,System.Data.SqlTypes Zero
Résultat SqlMoney