File tree Expand file tree Collapse file tree 1 file changed +10
-11
lines changed
Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,16 @@ public LongGuid GUID
3535 private bool automaticallyLoaded = true ;
3636 public bool AutomaticallyLoaded => automaticallyLoaded ;
3737
38+ public int Count => items . Count ;
39+
40+ public object SyncRoot => throw new NotSupportedException ( ) ;
41+ public bool IsSynchronized => throw new NotSupportedException ( ) ;
42+
43+ public bool IsFixedSize => false ;
44+ public bool IsReadOnly => false ;
45+
46+ public virtual bool ShouldProtectItemOrder => false ;
47+
3848 public ScriptableObject this [ int index ]
3949 {
4050 get => items [ index ] ;
@@ -77,17 +87,6 @@ public void CopyTo(List<ScriptableObject> list)
7787 list . Add ( e ) ;
7888 }
7989 }
80-
81- public int Count => items . Count ;
82-
83- public object SyncRoot => throw new NotSupportedException ( ) ;
84- public bool IsSynchronized => throw new NotSupportedException ( ) ;
85-
86- public bool IsFixedSize => false ;
87- public bool IsReadOnly => false ;
88-
89- public virtual bool ShouldProtectItemOrder => false ;
90-
9190
9291 public int Add ( object value )
9392 {
You can’t perform that action at this time.
0 commit comments