本文整理汇总了C#中Circle.GetType方法的典型用法代码示例。如果您正苦于以下问题:C# Circle.GetType方法的具体用法?C# Circle.GetType怎么用?C# Circle.GetType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Circle
的用法示例。
在下文中一共展示了Circle.GetType方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
static void Main()
{
Square square = new Square(0, 0, 10);
Rectangle rect = new Rectangle(0, 0, 10, 12);
Circle circle = new Circle(0, 0, 5);
if (square is IShape)
{
Console.WriteLine("{0} is IShape", square.GetType());
}
if (rect is IResizable)
{
Console.WriteLine("{0} is IResizable", rect.GetType());
}
if (circle is IResizable)
{
Console.WriteLine("{0} is IResizable", circle.GetType());
}
IShape[] shapes = { square, rect, circle };
var shapesSorted = shapes.OrderBy(shape => shape.CalculateSurface());
foreach (IShape shape in shapesSorted)
{
Console.WriteLine("Type: {0};",
shape.GetType());
}
}
示例2: Main
public static void Main()
{
Square square = new Square(0, 0, 10);
Rectangle rect = new Rectangle(0, 0, 10, 12);
Circle circle = new Circle(0, 0, 5);
if (square is IShape)
{
Console.WriteLine("{0} is IShape", square.GetType());
}
if (rect is IResizable)
{
Console.WriteLine("{0} is IResizable", rect.GetType());
}
if (circle is IResizable)
{
Console.WriteLine("{0} is IResizable", circle.GetType());
}
IShape[] shapes = { square, rect, circle };
foreach (IShape shape in shapes)
{
shape.SetPosition(5, 5);
Console.WriteLine(
"Type: {0}; surface: {1}",
shape.GetType(),
shape.CalculateSurface());
}
}
示例3: TestCreateCircleObject
public void TestCreateCircleObject()
{
//---------------Set up test pack-------------------
//---------------Execute Test ----------------------
BusinessObject objCircle = new Circle();
//---------------Test Result -----------------------
Assert.AreSame(typeof(Circle), objCircle.GetType(),
"objCircle should be of type Circle, but is of type " + objCircle.GetType().Name);
Assert.IsTrue(objCircle is Shape, "A Circle object should be a Shape");
}