Member-only story

Variables (C# and Unity)

Valdarix Games
5 min readApr 1, 2021

--

In a previous article, we talked about the importance of avoiding magic numbers with variables and constants. Today we will dig deeper into variables how to use them. Before we dig in, it is important to understand that a philosophical debate about variables has been waged for years between purists and practical programmers. This article will not address those topics and instead will focus on how and when I use them. Also of importance is that the use of the term Global here is referring to a class-level variable.

Global (Class) vs Local

Note: only for scope explanation not actually good code.

Variables have scope. Scope means that depending on where you declare a variable in code will impact its availability to the rest of the code. Note we are discussing a single code file here and not multiple files accessing each other; we will talk about that later. There are two primary levels of scope, Global and Local.

Global variables in C# are not genuinely global; they are technically class-level variables. This means that the variable is available to every class method, so its scope is the entire class. In the screenshot above, the variable myClassFloat is available to not only Test() but any other methods we add to the class.

myLocalFloat on the other hand has a scope that is local to Test() meaning that only code inside of Test() can access it. If we add any new methods to the code, they will not be able to access myLocalFloat.

Finally, we have a string variable called displayMessage that resides inside of an if statement for explanation purposes. This variable is only available to the code inside the if statement, it has a local scope of only that if statement.

Another way to look at this is that a variable is available to everything inside its parent brackets. So it is available to everything inside { } that it is declared inside of but nothing outside of those brackets.

My Best Practices

  1. Unless it is 100% necessary do not use a global variable.
  2. Never use the same name for a global and local variable.
  3. Always use descriptive names.
  4. Always use an underscore in the name of a private variable.

--

--

Valdarix Games
Valdarix Games

Written by Valdarix Games

Turning my passion for video games and software development experience into a focus on video game development.

No responses yet

Write a response