Version 4 (modified by Chuck, 16 years ago) |
---|
- Primitive Types
- Common
- bool
- char
- int (= int32)
- uint (= uint32)
- float (= float64)
- decimal
- number (= decimal, change with -number: option)
- dynamic
- Explicit Sizes
- int8, int16, int32, int64
- uint8, uint16, uint32, uint64
- PrimitiveTypeMembers
- Common
- Complex Types
- Class
- Single inheritance
- Heap-based
- Popular classes
- Object, String, StringBuilder, Exception
- List<of T>, Dictionary<of K, V>, Set<of T>
- Stack<of T>, Queue<of T>
- TextWriter, TextReader, StringWriter
- Struct
- No inheritance (other than Object)
- Value-based
- Popular structs
- DateTime, Color (System.Drawing)
- Interface
- Multipile inheritance
- No code implementation
- Popular interfaces
- IEnumerable, IEnumerable<of T> (but use T* instead; see streams below)
- IComparable, IComparable<of T>
- Class
- Nilable Type
- foo? - can be "foo" or "nil"
- applies to all types
- "dynamic" implies "dynamic?"
- See also
TODO: streams, arrays, passthrough, vari, typetype, how to get the type, local var type inference, greatest common denominator