예제 #1
0
 void deleteObject(GraphicObject go)
 {
     if (go == null)
     {
         return;
     }
     //lock (imlVE.UpdateMutex) {
     removeObject(go);
     go.Dispose();
     //}
 }