public PropertyEditorCollection(DataEditorCollection dataEditors, ManifestParser manifestParser)
     : base(dataEditors
            .Where(x => (x.Type & EditorType.PropertyValue) > 0)
            .Union(manifestParser.Manifest.PropertyEditors))
 {
 }
 public PropertyEditorCollection(DataEditorCollection dataEditors)
     : base(dataEditors
            .Where(x => (x.Type & EditorType.PropertyValue) > 0))
 {
 }