line.cs
来自「一个聊天程序」· CS 代码 · 共 20 行
CS
20 行
namespace RemotingChat
{
using System;
/// <summary>
/// Summary description for Line.
/// </summary>
[Serializable]
public class Line
{
public int x,y,dx,dy;
public Line(int x, int y, int dx, int dy){
this.x=x;
this.y=y;
this.dx=dx;
this.dy=dy;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?