How to assign the value of the string type of C #
This article mainly introduces the relevant knowledge of how to assign the value of the string type of C#, the content is detailed and easy to understand, the operation is simple and fast, and it has a certain reference value. I believe you will gain something after reading this article on how to allocate the value of the string type of C#. Let's take a look.
String (String) type
The String type allows you to assign any string value to a variable. The string (String) type is an alias for the System.String class. It is derived from the Object type. Values of type String can be assigned in two forms: quotation marks and @ quotation marks.
For example:
String str = "runoob.com"
An @ quotation mark string:
@ "runoob.com"
The C # string string can be preceded by @ (called "verbatim string") to treat the escape character (\) as a normal character, such as:
String str = @ "C:\ Windows"
Equivalent to:
String str = "C:\\ Windows"
You can wrap any line in a @ string, and newline characters and indented spaces are counted within the length of the string.
String str = @ ""
User-defined reference types are: class, interface, or delegate.
This is the end of the article on "how to assign the value of the string type of C#". Thank you for reading! I believe you all have a certain understanding of the knowledge of "how to assign the value of the string type of C#". If you want to learn more, you are welcome to follow the industry information channel.