コード例 #1
0
ファイル: Shape.cs プロジェクト: vdimensions/multimethods
 protected string Intersect(Circle other)
 {
     return(this.ToString() + " x Circle");
 }
コード例 #2
0
ファイル: Shape.cs プロジェクト: vdimensions/multimethods
 protected string Intersect(Circle other)
 {
     return("Rectangle x Circle");
 }