예제 #1
0
 public void RemoveView(EditorViewAdapter view)
 {
     lock (this) {
         _views.Remove(view);
         _viewsCopy = null;
     }
 }
예제 #2
0
 public void AddView(EditorViewAdapter view)
 {
     lock (this) {
         _views.Add(view);
         _viewsCopy = null;
     }
 }