📄 program.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace Example7_1 {
public class Farmer {
private int age;
private string name;
private string sex;
public string Name {
get {
throw new System.NotImplementedException();
}
set {
}
}
public int Age {
get {
throw new System.NotImplementedException();
}
set {
}
}
public string Sex {
get {
throw new System.NotImplementedException();
}
set {
}
}
public void Walk() {
throw new System.NotImplementedException();
}
public void Eat() {
throw new System.NotImplementedException();
}
public void Work() {
throw new System.NotImplementedException();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -