Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Auto Implemented Property in C#
WhatsApp
Rajan Singh
Jun 28
2015
1.2
k
0
0
using
System.IO;
using
System;
class
PropertyClass {
public
int
MyValue
// Auto Implemented Property
{
set
;
get
;
}
class
Auto Implemented Property {
public
static
void
Main(String[] arg) {
PropertyClass propertyObject =
new
PropertyClass();
int
fieldValue;
fieldValue = propertyObject.MyValue;
//Get Field Value via Property's set Accessor
Console.WriteLine(
"MyValue: "
+ fieldValue);
propertyObject.MyValue = 100;
//Set Field Value via Property's set Accessor
fieldValue = propertyObject.MyValue;
Console.WriteLine(
"MyValue: "
+ propertyObject.MyValue);
}
}
}
Output
MyValue: 0
MyValue: 100
Property in C#
C#
Up Next
Auto Implemented Property in C#