Difference between revisions of "String"

esse quam videri
Jump to: navigation, search
(Definition)
 
Line 10: Line 10:
  
  
=Resources=
 
 
== See also ==
 
== See also ==
 
* [[C Sharp Data Types]]
 
* [[C Sharp Data Types]]
Line 17: Line 16:
 
*[[Concatenation]]
 
*[[Concatenation]]
  
==Notes==
 
  
  
==External Links==
 
  
  

Latest revision as of 16:17, 8 August 2019

Definition

A string is a sequence of characters. Because strings are composed of characters, strings can inherently hold letters, numbers, and symbols.

Relevance

Strings are a common data type that are used for information such as user input, names, descriptions, etc.

Explanation

Concatenation can be used with strings to combine them together. Strings can also be converted into an array of characters.


See also