예제 #1
0
 public static Point2D GetPoint(this IniKeyCollection keys, string key, Point2D defaultValue)
 {
     return(keys.Contains(key) ? keys.GetPoint(key) : defaultValue);
 }