.NET Portable TypeCast  3.1.0.4
A, easy-to-use tested, generic, portable, runtime-extensible, arbitrary type converter library
Core.Extensions Namespace Reference

Classes

class  TypeInfoExtension
 The TypeInfo extension.
 

Enumerations

enum  TypeMatch : sbyte {
  TypeMatch.None,
  TypeMatch.Same,
  TypeMatch.Similar
}
 An enumerating of values containing a rough 2bit classification of relationship between two types More...
 

Enumeration Type Documentation

enum Core.Extensions.TypeMatch : sbyte
strong

An enumerating of values containing a rough 2bit classification of relationship between two types

The enumeration relates to the type change classification of Cast, Convert and Transform

Enumerator
None 

Unknown or no relationship between the types

Same 

Identical or same relationship between the types

Similar 

Similar or same base relationship between the types

Definition at line 17 of file TypeMatch.cs.

17  : sbyte
18  {
22  [Description("Unknown or no relationship between the types")]
23  None,
24 
28  [Description("Identical or same relationship between the types")]
29  Same,
30 
34  [Description("Similar or same base relationship between the types")]
35  Similar,
36  }
Indicates the default or unspecified value
Similar or same base relationship between the types
Identical or same relationship between the types