コード例 #1
0
ファイル: test7685.cs プロジェクト: layomia/dotnet_runtime
 public RectangleNestedF(float x, float y, float width, float height)
 {
     first = new RectangleFSmall(x, y);
     second = new RectangleFSmall(width, height);
 }
コード例 #2
0
ファイル: test7685.cs プロジェクト: layomia/dotnet_runtime
 public static bool Equals(ref RectangleFSmall r1, ref RectangleFSmall r2)
 {
     return (r2._x == r1._x) && (r2._y == r1._y);
 }