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
Adding Data to an Object
WhatsApp
Ujjwal Patel
Jan 19
2015
890
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#
Data
Object
Up Next
Adding Data to an Object