当前位置: 首页>>代码示例>>C#>>正文


C# Rectangle.GetType方法代码示例

本文整理汇总了C#中Rectangle.GetType方法的典型用法代码示例。如果您正苦于以下问题:C# Rectangle.GetType方法的具体用法?C# Rectangle.GetType怎么用?C# Rectangle.GetType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Rectangle的用法示例。


在下文中一共展示了Rectangle.GetType方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: DynamicTypesExample

        // Use the static modifier to declare a static member, which belongs to the type itself rather than to a specific object.
        // The static modifier can be used with classes, fields, methods, properties, operators, events, and constructors, but it cannot be used with indexers, destructors, or types other than classes.
        public static void DynamicTypesExample()
        {
            dynamic d = 5;
            Console.WriteLine("d = {0}, type = {1}", d, d.GetType());
            Console.ReadKey();

            d = new Rectangle(4, 3);
            Console.WriteLine("d = {0}, type = {1}", d, d.GetType());
            Console.ReadKey();

            d = 10.4;
            Console.WriteLine("d = {0}, type = {1}", d, d.GetType());
            Console.ReadKey();
        }
开发者ID:ZeroToHero-2015,项目名称:Fundamentals2016,代码行数:16,代码来源:DynamicTypes.cs

示例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());
        }
    }
开发者ID:SivaCse,项目名称:Object-Oriented-Programming,代码行数:32,代码来源:PlayWithInterfaces.cs

示例3: 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());
        }
    }
开发者ID:KirilToshev,项目名称:Projects,代码行数:26,代码来源:PlayWithInterfaces.cs

示例4: rectangleButton_Click

 private void rectangleButton_Click(object sender, EventArgs e)
 {
     Graphics graphics = pictureBox.CreateGraphics();
     float width = random.Next(10, 50);
     float height = random.Next(10, 50);
     float x = random.Next(0, pictureBox.Width - (int)width);
     float y =  random.Next(0, pictureBox.Height - (int)height);
     Figure rectangle = new Rectangle(x, y, width, height);
     figureList.Add(rectangle);
     figureTreeView.Nodes.Add(rectangle.GetType().Name.ToString());
     rectangle.Draw(graphics);
 }
开发者ID:MaxLitvinov,项目名称:Practice,代码行数:12,代码来源:FigureMovingForm.cs

示例5: GetRectangleFromList

        //jak z perspektywy czasu patrzê na to, myœlê, ¿e to chyba by³ g³upi pomys³ (przez to, ¿e potem okaza³o siê, ze potrzebne s¹ metody, które przyjmuja argumenty)
        /// <summary>
        /// 
        /// </summary>
        /// <param name="gmt"></param>
        /// <param name="gettingMethodArgument">Additional method parameter.
        /// If gmt is LimitedLongest it should be maxSideLength, if SmallestCovering - rectangle to cover, if SmallestNotShorterThan - minSideLength.
        /// Otherwise it is unused.</param>
        /// <returns></returns>
        private Rectangle GetRectangleFromList(GettingMethodType gmt, object gettingMethodArgument)
        {
            Rectangle result = null;
            if (aRects != null && sRects != null)
            {
                switch (gmt)
                {
                    case GettingMethodType.Largest:
                        result = PeekLargestRect();
                        break;
                    case GettingMethodType.Smallest:
                        result = PeekSmallestRect();
                        break;
                    case GettingMethodType.Longest:
                        result = PeekLongestRect();
                        break;
                    case GettingMethodType.LimitedLongest:
                        int maxSideLength = 0;
                        if(gettingMethodArgument == null || gettingMethodArgument.GetType() != maxSideLength.GetType())
                            throw new ArgumentException();
                        maxSideLength = (int) gettingMethodArgument;
                        result = PeekLongestRect(maxSideLength);
                        break;
                    case GettingMethodType.SmallestCovering:
                        Rectangle r = new Rectangle(1,1);
                        if(gettingMethodArgument == null || gettingMethodArgument.GetType() != r.GetType())
                            throw new ArgumentException();
                        r = (Rectangle)gettingMethodArgument;
                        result = PeekSmallestCovering(r.SideA, r.SideB);
                        break;
                    case GettingMethodType.SmallestNotShorterThan:
                        int minSideLength = 0;
                        if (gettingMethodArgument == null || gettingMethodArgument.GetType() != minSideLength.GetType())
                            throw new ArgumentException();
                        minSideLength = (int)gettingMethodArgument;
                        result = PeekSmallestNotShorterThan(minSideLength);
                        break;
                }

                if (result != null)
                {
                    aRects.Remove(result);
                    sRects.Remove(result);
                }
            }
            return result;
        }
开发者ID:BackupTheBerlios,项目名称:warcom,代码行数:56,代码来源:RectangleLists.cs


注:本文中的Rectangle.GetType方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。