•Autodesk.Revit.DB.XYZ
•Autodesk.Revit.DB.UV
•Autodesk.Revit.DB.ElementId
§Implemented
in managed code
§Suitable
for properties.
§API methods have been converted to accept and return
these types
§Methods now take .NET collections interfaces containing these types (instead of Revit collections):
§Autodesk.Revit.ElementIdSet
-> ICollection<Autodesk.Revit.DB.ElementId>
§Autodesk.Revit.Geometry.XYZArray
-> IList<Autodesk.Revit.DB.XYZ>
§Autodesk.Revit.Geometry.UVArray
-> IList<Autodesk.Revit.DB.UV>
§ElementId is now a class instead of a struct and should
not be passed by reference.
•