c# - Is there a difference between readonly and { get; } -


क्या ये बयानों का मतलब एक ही बात है?

  int x {get; } केवल पढ़ने के लिए int x;  

आपके प्रश्न के उत्तर में: है एक अंतर केवल पढ़ने के लिए और {पाने के बीच; }:

में int x {get; } (जो संकलित नहीं होगा क्योंकि एक्स सेट करने का कोई तरीका नहीं है - मुझे लगता है कि आपको सार्वजनिक int x {get; निजी सेट;} ) की आवश्यकता है, आपका कोड x बदलते रह सकता है


Comments

Popular posts from this blog

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -