Difference between revisions of "Declare"

esse quam videri
Jump to: navigation, search
(Created page with "=Definition= =Relevance= =Explanation= =Resources= == See also == * Variable ==Notes== ==External Links== Category:Programming Language Concepts Category...")
 
 
Line 3: Line 3:
 
=Relevance=
 
=Relevance=
  
=Explanation=
+
=Example=
 +
<syntaxhighlight lang ="csharp">
  
 +
// These are variable declerations. Notice they do not yet have a value
 +
 +
string firstName;
 +
string lastName;
 +
double salary;
 +
int yearStarted
 +
 +
</syntaxhighlight>
  
  

Latest revision as of 15:47, 22 August 2019

Definition

Relevance

Example

// These are variable declerations. Notice they do not yet have a value

string firstName;
string lastName;
double salary;
int yearStarted


Resources

See also


Notes

External Links