

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What are string literals in C#?
String literals or constants are enclosed in double quotes "" or with @"". A string contains characters that are similar to character literals: plain characters, escape sequences, and universal characters.
Here are some examples of String Literals −
“Hi, User" "You’re Welcome, \
The following is an example showing the usage of string literals −
Example
using System; namespace Demo { class Program { static void Main(string[] args) { // string string str1 ="Hello, World"; Console.WriteLine(str1); // Multi-line string string str2 = @"Welcome, Hope you are doing great!"; Console.WriteLine(str2); } } }
Output
Hello, World Welcome, Hope you are doing great!
- Related Questions & Answers
- What are Perl String Literals?
- What are string literals in C language?
- What are JSP literals?
- What are literals in Java?
- What are literals in C++?
- What are Perl Numerical Literals?
- What are integer literals in C#?
- What are Boolean literals in Java?
- What are Boolean Literals in C++?
- What are Character Literals in C++?
- What is the difference between character literals and string literals in Java?
- What are floating point literals in C#?
- Formatted string literals in C#
- What does the @ prefix do on string literals in C#?
- What is the type of string literals in C/ C++?
Advertisements