C# 클래스 ComponentFactory.Quicksilver.Binding.ImplicitConverter

Provides helper methods for performing implicit type conversion.
파일 보기 프로젝트 열기: ComponentFactory/Quicksilver

공개 메소드들

메소드 설명
CanConvertTo ( TypeCode target, object value, System.Language language ) : bool

Determines if the incoming value can be implicitly converted to the target type.

CanConvertToBoolean ( object value, System.Language language ) : bool

Determines if a value can be implicitly converted to Boolean.

CanConvertToByte ( object value, System.Language language ) : bool

Determines if a value can be implicitly converted to Byte.

CanConvertToChar ( object value, System.Language language ) : bool

Determines if a value can be implicitly converted to Char.

CanConvertToDecimal ( object value, System.Language language ) : bool

Determines if a value can be implicitly converted to Decimal.

CanConvertToDouble ( object value, System.Language language ) : bool

Determines if a value can be implicitly converted to Double.

CanConvertToInt16 ( object value, System.Language language ) : bool

Determines if a value can be implicitly converted to Int16.

CanConvertToInt32 ( object value, System.Language language ) : bool

Determines if a value can be implicitly converted to Int32.

CanConvertToInt64 ( object value, System.Language language ) : bool

Determines if a value can be implicitly converted to Int64.

CanConvertToSByte ( object value, System.Language language ) : bool

Determines if a value can be implicitly converted to SByte.

CanConvertToSingle ( object value, System.Language language ) : bool

Determines if a value can be implicitly converted to Single.

CanConvertToUInt16 ( object value, System.Language language ) : bool

Determines if a value can be implicitly converted to UInt16.

CanConvertToUInt32 ( object value, System.Language language ) : bool

Determines if a value can be implicitly converted to UInt32.

CanConvertToUInt64 ( object value, System.Language language ) : bool

Determines if a value can be implicitly converted to UInt64.

ConvertTo ( TypeCode target, object value, System.Language language ) : object

Implicit conversion from incoming value to target type.

ConvertToBoolean ( object value, System.Language language ) : bool

Implicit conversion from incoming value to Boolean.

ConvertToByte ( object value, System.Language language ) : Byte

Implicit conversion from incoming value to Byte.

ConvertToChar ( object value, System.Language language ) : char

Implicit conversion from incoming value to Char.

ConvertToDecimal ( object value, System.Language language ) : Decimal

Implicit conversion from incoming value to Decimal.

ConvertToDouble ( object value, System.Language language ) : Double

Implicit conversion from incoming value to Double.

ConvertToInt16 ( object value, System.Language language ) : Int16

Implicit conversion from incoming value to Int16.

ConvertToInt32 ( object value, System.Language language ) : Int32

Implicit conversion from incoming value to Int32.

ConvertToInt64 ( object value, System.Language language ) : System.Int64

Implicit conversion from incoming value to Int64.

ConvertToSByte ( object value, System.Language language ) : SByte

Implicit conversion from incoming value to SByte.

ConvertToSingle ( object value, System.Language language ) : System.Single

Implicit conversion from incoming value to Single.

ConvertToUInt16 ( object value, System.Language language ) : UInt16

Implicit conversion from incoming value to UInt16.

ConvertToUInt32 ( object value, System.Language language ) : UInt32

Implicit conversion from incoming value to UInt32.

ConvertToUInt64 ( object value, System.Language language ) : System.UInt64

Implicit conversion from incoming value to UInt64.

메소드 상세

CanConvertTo() 공개 정적인 메소드

Determines if the incoming value can be implicitly converted to the target type.
public static CanConvertTo ( TypeCode target, object value, System.Language language ) : bool
target TypeCode Target type for value to be converted into.
value object Value to be tested.
language System.Language Language rules to be used.
리턴 bool

CanConvertToBoolean() 공개 정적인 메소드

Determines if a value can be implicitly converted to Boolean.
public static CanConvertToBoolean ( object value, System.Language language ) : bool
value object Value to test.
language System.Language Language rules to be used.
리턴 bool

CanConvertToByte() 공개 정적인 메소드

Determines if a value can be implicitly converted to Byte.
public static CanConvertToByte ( object value, System.Language language ) : bool
value object Value to test.
language System.Language Language rules to be used.
리턴 bool

CanConvertToChar() 공개 정적인 메소드

Determines if a value can be implicitly converted to Char.
public static CanConvertToChar ( object value, System.Language language ) : bool
value object Value to test.
language System.Language Language rules to be used.
리턴 bool

CanConvertToDecimal() 공개 정적인 메소드

Determines if a value can be implicitly converted to Decimal.
public static CanConvertToDecimal ( object value, System.Language language ) : bool
value object Value to test.
language System.Language Language rules to be used.
리턴 bool

CanConvertToDouble() 공개 정적인 메소드

Determines if a value can be implicitly converted to Double.
public static CanConvertToDouble ( object value, System.Language language ) : bool
value object Value to test.
language System.Language Language rules to be used.
리턴 bool

CanConvertToInt16() 공개 정적인 메소드

Determines if a value can be implicitly converted to Int16.
public static CanConvertToInt16 ( object value, System.Language language ) : bool
value object Value to test.
language System.Language Language rules to be used.
리턴 bool

CanConvertToInt32() 공개 정적인 메소드

Determines if a value can be implicitly converted to Int32.
public static CanConvertToInt32 ( object value, System.Language language ) : bool
value object Value to test.
language System.Language Language rules to be used.
리턴 bool

CanConvertToInt64() 공개 정적인 메소드

Determines if a value can be implicitly converted to Int64.
public static CanConvertToInt64 ( object value, System.Language language ) : bool
value object Value to test.
language System.Language Language rules to be used.
리턴 bool

CanConvertToSByte() 공개 정적인 메소드

Determines if a value can be implicitly converted to SByte.
public static CanConvertToSByte ( object value, System.Language language ) : bool
value object Value to test.
language System.Language Language rules to be used.
리턴 bool

CanConvertToSingle() 공개 정적인 메소드

Determines if a value can be implicitly converted to Single.
public static CanConvertToSingle ( object value, System.Language language ) : bool
value object Value to test.
language System.Language Language rules to be used.
리턴 bool

CanConvertToUInt16() 공개 정적인 메소드

Determines if a value can be implicitly converted to UInt16.
public static CanConvertToUInt16 ( object value, System.Language language ) : bool
value object Value to test.
language System.Language Language rules to be used.
리턴 bool

CanConvertToUInt32() 공개 정적인 메소드

Determines if a value can be implicitly converted to UInt32.
public static CanConvertToUInt32 ( object value, System.Language language ) : bool
value object Value to test.
language System.Language Language rules to be used.
리턴 bool

CanConvertToUInt64() 공개 정적인 메소드

Determines if a value can be implicitly converted to UInt64.
public static CanConvertToUInt64 ( object value, System.Language language ) : bool
value object Value to test.
language System.Language Language rules to be used.
리턴 bool

ConvertTo() 공개 정적인 메소드

Implicit conversion from incoming value to target type.
public static ConvertTo ( TypeCode target, object value, System.Language language ) : object
target TypeCode Target type for value to be converted into.
value object Value to be converted.
language System.Language Language rules to be used.
리턴 object

ConvertToBoolean() 공개 정적인 메소드

Implicit conversion from incoming value to Boolean.
public static ConvertToBoolean ( object value, System.Language language ) : bool
value object Value to convert.
language System.Language Language rules to be used.
리턴 bool

ConvertToByte() 공개 정적인 메소드

Implicit conversion from incoming value to Byte.
public static ConvertToByte ( object value, System.Language language ) : Byte
value object Value to convert.
language System.Language Language rules to be used.
리턴 Byte

ConvertToChar() 공개 정적인 메소드

Implicit conversion from incoming value to Char.
public static ConvertToChar ( object value, System.Language language ) : char
value object Value to convert.
language System.Language Language rules to be used.
리턴 char

ConvertToDecimal() 공개 정적인 메소드

Implicit conversion from incoming value to Decimal.
public static ConvertToDecimal ( object value, System.Language language ) : Decimal
value object Value to convert.
language System.Language Language rules to be used.
리턴 Decimal

ConvertToDouble() 공개 정적인 메소드

Implicit conversion from incoming value to Double.
public static ConvertToDouble ( object value, System.Language language ) : Double
value object Value to convert.
language System.Language Language rules to be used.
리턴 Double

ConvertToInt16() 공개 정적인 메소드

Implicit conversion from incoming value to Int16.
public static ConvertToInt16 ( object value, System.Language language ) : Int16
value object Value to convert.
language System.Language Language rules to be used.
리턴 System.Int16

ConvertToInt32() 공개 정적인 메소드

Implicit conversion from incoming value to Int32.
public static ConvertToInt32 ( object value, System.Language language ) : Int32
value object Value to convert.
language System.Language Language rules to be used.
리턴 System.Int32

ConvertToInt64() 공개 정적인 메소드

Implicit conversion from incoming value to Int64.
public static ConvertToInt64 ( object value, System.Language language ) : System.Int64
value object Value to convert.
language System.Language Language rules to be used.
리턴 System.Int64

ConvertToSByte() 공개 정적인 메소드

Implicit conversion from incoming value to SByte.
public static ConvertToSByte ( object value, System.Language language ) : SByte
value object Value to convert.
language System.Language Language rules to be used.
리턴 SByte

ConvertToSingle() 공개 정적인 메소드

Implicit conversion from incoming value to Single.
public static ConvertToSingle ( object value, System.Language language ) : System.Single
value object Value to convert.
language System.Language Language rules to be used.
리턴 System.Single

ConvertToUInt16() 공개 정적인 메소드

Implicit conversion from incoming value to UInt16.
public static ConvertToUInt16 ( object value, System.Language language ) : UInt16
value object Value to convert.
language System.Language Language rules to be used.
리턴 System.UInt16

ConvertToUInt32() 공개 정적인 메소드

Implicit conversion from incoming value to UInt32.
public static ConvertToUInt32 ( object value, System.Language language ) : UInt32
value object Value to convert.
language System.Language Language rules to be used.
리턴 System.UInt32

ConvertToUInt64() 공개 정적인 메소드

Implicit conversion from incoming value to UInt64.
public static ConvertToUInt64 ( object value, System.Language language ) : System.UInt64
value object Value to convert.
language System.Language Language rules to be used.
리턴 System.UInt64