示例#1
0
文件: Rectangle.cs 项目: shbszxj/demo
 public Rectangle(DrawApi implementor) : base(implementor)
 {
 }
示例#2
0
文件: Line.cs 项目: shbszxj/demo
 /// <summary>
 /// Initializes a new instance of the <see cref="BridgePattern.Line"/> class.
 /// </summary>
 /// <param name="implementor">The implementor instance to use.</param>
 public Line(DrawApi implementor) : base(implementor)
 {
 }
示例#3
0
 public Square(DrawApi implementor) : base(implementor)
 {
 }