Difference between revisions of "String"

esse quam videri
Jump to: navigation, search
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
  
 
=Definition=
 
=Definition=
A string is a sequence of characters.
+
A string is a sequence of characters. Because strings are composed of characters, strings can inherently hold letters, numbers, and symbols.
  
 
=Relevance=
 
=Relevance=
Strings are a common data type that'll be used for information such as user input, names, adresses, etc.
+
Strings are a common data type that are used for information such as user input, names, descriptions, etc.
  
 
=Explanation=
 
=Explanation=
 +
Concatenation can be used with strings to combine them together. Strings can also be converted into an array of characters.
  
  
 
=Resources=
 
 
== See also ==
 
== See also ==
 
* [[C Sharp Data Types]]
 
* [[C Sharp Data Types]]
 
* [[Variable]]
 
* [[Variable]]
 
* [[Data Type]]
 
* [[Data Type]]
 +
*[[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