C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
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
Adding Data to an Object
WhatsApp
Ujjwal Patel
Jan 19
2015
902
0
0
using
System;
using
System.Collections.Generic;
using
System.Linq;
using
System.Text;
using
System.Threading.Tasks;
namespace
TestingOops
{
class
Employee
{
public
int
Empage
{
get
;
set
;
}
public
string
Empname
{
get
;
set
;
}
public
string
Empphonenumber
{
get
;
set
;
}
public
double
Empsalary
{
get
;
set
;
}
}
class
Program
{
static
void
Main(
string
[] args)
{
Employee emp =
new
Employee
{
Empage=32,
Empname=
"Ujjwal"
,
Empphonenumber=
"9031-214-542"
,
Empsalary=50000
};
Console.WriteLine(
"Employee Name is : \'{0}\' and Age is {1}. {0} gets salary of $ {2} and his phone number is {3}"
,emp.Empname,emp.Empage,emp.Empsalary,emp.Empphonenumber);
Console.ReadKey();
}
}
}
C#
Object
Data
Up Next
Adding Data to an Object