P P.Sunil Oct 21, 2003 #1 Please tell me what are "fields" in a class. Please specify with an example Sunil
A anonymouse Oct 21, 2003 #2 class CClass { private bool thisIsAField; public CClass() { // constructor } public void someFn() { // isntance method } public ThisIsAPropertyAcessor { get { return this.thisIsAField} set { this.IsAField = value} } }
class CClass { private bool thisIsAField; public CClass() { // constructor } public void someFn() { // isntance method } public ThisIsAPropertyAcessor { get { return this.thisIsAField} set { this.IsAField = value} } }