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
Diffrence between Write and WriteLine Methods in C#
WhatsApp
Darwin Chaudhary
13y
213.6
k
0
1
25
Blog
Introduction
:
In this blog, we will see the difference between the Write and the WriteLine methods.
The
Write ()
method outputs one or more values to the screen without a new line character.
The
WriteLine()
always appends a new line character to the end of the string. this means any subsequent output will start on a new line.
Example:
using
System;
using
System.Collections.Generic;
using
System.Linq;
using
System.Text;
using
System;
class
Program
{
static
void
Main()
{
Console
.Write(
"Box"
);
Console
.Write(
"Table"
);
Console
.Write(
"chair"
);
Console
.WriteLine();
Console
.WriteLine(
"desk"
);
}
}
Output of the program
:
Up Next
What Is Static Method And Instance Method In C#
Ebook Download
View all
Programming Strings using C#
Read by 23.4k people
Download Now!
Learn
View all
Membership not found