Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js
Home  • Courses • Software Engineering

Field and Properties (C#)

Lecture: - declare fields/variables as private - provide public get and set methods, through properties, to access and update the value of a private field
  1. class Person{
  2. private string name; // field
  3. public string Name{ get; set; } // property
  4. }
  5.  
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. Person person= new Person();
  11. person.Name = "Zahid";
  12. Console.WriteLine(person.Name);
  13. }
  14. }

Comments 1


odd namber "Bejor namber" and Even namber"Jor namber"
Copyright © 2025. Powered by Intellect Software Ltd