标签: c#
以下C#代码中的{get;}和Readonly有什么区别?
String name { get { return "Tom"; } } const String name = "Tom"; readonly String name = "Tom";
请解释简单的问题或任何参考。