コード例 #1
0
 public static UIImage AssertColorAtTopRight(this UIImage bitmap, UIColor expectedColor)
 {
     return(bitmap.AssertColorAtPoint(expectedColor, (int)bitmap.Size.Width - 1, (int)bitmap.Size.Height - 1));
 }
コード例 #2
0
 public static UIImage AssertColorAtBottomLeft(this UIImage bitmap, UIColor expectedColor)
 {
     return(bitmap.AssertColorAtPoint(expectedColor, 0, 0));
 }