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

📄 class1.cs

📁 c#网络编程及应用-刘瑞新
💻 CS
字号:
using System;
namespace ConsoleTest
{
	public struct Point
	{
		public int x;
		public int y;
		public string s;
	}
	public struct Point1
	{
		public static int x;
		public static int y;
		public static string s;
	}
	class TestStruct
	{
		public static void Main()
		{
			Point p;
			p.x=3;
			p.y=4;
			p.s="ok";
			Console.WriteLine("The result is {0},{1},{2}",p.x,p.y,p.s);
			Point1.x=1;
			Point1.y=2;
			Point1.s="good";
			Console.WriteLine("The result is {0},{1},{2}",Point1.x,Point1.y,Point1.s);
			Console.Read();
		}
	}
}

⌨️ 快捷键说明

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