Page 1 of 1

Consider a class maths and we had a property called as sum.b is a reference to a maths object and we want the code below

Posted: Wed Jul 13, 2022 7:57 pm
by answerhappygod
b.maths = 10;
Console.WriteLine(b.maths);
a) Declare maths property with get and set accessors
b) Declare maths property with only get accessors
c) Declare maths property with only set accessors
d) Declare maths property with only get, set and normal accessors