コード例 #1
0
ファイル: Drawing.cs プロジェクト: sean-nelson/Shapes
 public void RemoveShape(Shape s)
 {
     _shapes.Remove (s);
 }
コード例 #2
0
ファイル: Drawing.cs プロジェクト: sean-nelson/Shapes
 //Methods
 public void AddShape(Shape s)
 {
     _shapes.Add (s);
 }