Type Aliases
From The Oxygene Language Wiki
This is a Language topic
Feel free to add your notes to this topic below.
Type aliases are an Delphi Prism feature that makes it possible to use an alternative name for an supported type. Type aliases can be defined locally for the project, or publicly between projects.
type SimpleDictionary = System.Collections.Generic.Dictionary<String, Object>; // only valid from within the current assembly ObjectList = public System.Collections.Generic.List<Object>; // can be used from other assemblies too
See Also
Area: Oxygene Language
Compiler version: Oxygene 5
Language Glossary — Keywords — Types — FAQ — How To