⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 coordinate.cs

📁 csharp-solution,C#高效编程源码
💻 CS
字号:
namespace Utils
{
    using System;

	// Sample class that implements the IPrintable interface

	class Coordinate : IPrintable
	{
		private double x;
		private double y;

		public Coordinate() {
			x=0.0;
			y=0.0;
		}

		public Coordinate(double px,double py) {
			x=px;
			y=py;
		}

		public void Print() {
			Console.WriteLine("({0},{1})", x, y);
		}
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -