drawshapes.cs
来自「北大青鸟内部资料」· CS 代码 · 共 26 行
CS
26 行
using System;
namespace Example_3
{
/// <summary>
/// Summary description for DrawShapes.
/// </summary>
class DrawShapes
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
//
// TODO: Add code to start application here
//
Shapes objShapes;
objShapes = new Circle(0,0,200,300);
objShapes.draw();
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?