namespace Guilds
{
public class Wizard
{
public void Wear(IClothing clothing)
{
Console.WriteLine("Puts on the {Robe} and {WizardHat}".Fmt(clothing));
}
IClothing _clothes;
IWeapon _weapon; // <== I want my fields added at the bottom of the class!
}
}
我知道,如果您将字段放在底部,它也会开始将后续字段添加到类的底部。即使对于第一个字段,我也希望将其作为默认行为。
此行为通常在按下 Ctrl + 时触发。在未声明的字段之上。