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