Skip to main content

Posts

Showing posts with the label property class in c#

property class in c#

Property  is a name of data fields which are use to get and set the values. It is a member of class, Structs , and interfaces . get {} :  getter are use to return a value. set {} :  setter are use to get a value. public int UserId { get ; set ; } Example : get and set the values, In this step 1, we create property in a class using System;  using System.Collections.Generic;  using System.Linq;  using System.Text;    namespace PropertyExample  {             public class UserDetails             {                           public int UserId { get ; set ; }                      ...