what is ad usage
private Int64 _ID ; public Int64 ID{get { return _ID; }set { _ID = value; } };
to declare a private variable
Now, as a rule, in coding we use an ID, which, in turn, gets access to the _ID, which is private. How does this provide greater security instead of directly declaring how
public int64 ID{get;set;}
Raghurocks
source share