本文整理汇总了C#中Rectangle.IsSquare方法的典型用法代码示例。如果您正苦于以下问题:C# Rectangle.IsSquare方法的具体用法?C# Rectangle.IsSquare怎么用?C# Rectangle.IsSquare使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Rectangle
的用法示例。
在下文中一共展示了Rectangle.IsSquare方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
public static void Main()
{
Rectangle myRectangle = new Rectangle();
Console.WriteLine("Enter the length: ");
string stringLength = Console.ReadLine();
int myLength = int.Parse(stringLength);
myRectangle.Length = myLength;
Console.WriteLine("Enter the width: ");
string stringWidth = Console.ReadLine();
int myWidth = int.Parse(stringWidth);
myRectangle.Width = myWidth;
if (myRectangle.IsSquare())
{
Console.WriteLine("Congratulations! You made a square!");
}
else
{
Console.WriteLine("Sorry! This isn't a square.");
}
Console.WriteLine("The area of your rectangle is " + myRectangle.GetArea());
}
示例2: Main
static void Main(string[] args)
{
Console.Title = "判断矩形是否为正方形";
Rectangle rect = new Rectangle(); //创建一个矩形对象
rect.Width = 100; //设置矩形宽度为100
rect.Height = 100; //设置矩形高度为100
Console.WriteLine("矩形宽:{0} 矩形高:{1}", rect.Width, rect.Height);//输出矩形宽度和高度
bool isSquare = rect.IsSquare(); //获取矩形是否为正方形
Console.WriteLine("矩形是否为正方形:{0}", isSquare); //输出矩形是否为正方形
Console.Read();
}