internal EpsgCoordinateSystem(ushort code, string name, int dimension, bool deprecated, EpsgCoordinateSystemKind csType)
 {
     Contract.Requires(!String.IsNullOrEmpty(name));
     _code       = code;
     Name        = name;
     _dimension  = dimension;
     _deprecated = deprecated;
     _csType     = csType;
 }
 internal EpsgCoordinateSystem(ushort code, string name, int dimension, bool deprecated, EpsgCoordinateSystemKind csType)
 {
     Contract.Requires(!String.IsNullOrEmpty(name));
     _code = code;
     Name = name;
     _dimension = dimension;
     _deprecated = deprecated;
     _csType = csType;
 }