Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
作为主题
public String imie, nazwisko{get; private set;}
我会在同一行中imie为它们应用 get/set 规则nazwisko
imie
nazwisko
如果你想在一个语句中声明多个字段,你可以:
public string imie, nazwisko, whatever;
您发布的内容是尝试对properties做同样的事情,这是不可能的(不是使用共享的 getter/setter 声明)。
当然,这些可以在一条线上:
public string imie{get; private set;} public string nazwisko{get; private set;}
我建议阅读MSDN 上的字段和属性。