Advertisement
Inksaver

Variable Scope Demo (C#)

Jun 7th, 2020
965
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.33 KB | None | 0 0
  1. /*
  2.     In C# variables declared outside of any function/procedure/loop etc are
  3.     available to the whole script.
  4.     you should use the private keyword on all variables declared, as this makes them LOCAL to the
  5.     entire script (Effectively global), but not available to other scripts in the project.
  6.    
  7.     They are READ/WRITE inside a function/procedure (unlike Python)
  8.  
  9.     Variables declared inside functions/procedures/loops are local to that code block.
  10.     They are deleted when the code block is ended. (Similar to Python)
  11. */
  12.  
  13. public static string globalDemoVariable = "Hello World"; //global to the whole of this script
  14.  
  15. private static void CSharpScopeDemo()
  16. {
  17.     Console.WriteLine(globalDemoVariable);
  18.     globalDemoVariable = "Goodbye"; //unlike python this variable can be changed here
  19.     Console.WriteLine(globalDemoVariable);
  20.    
  21.     string localDemoVariable = "this is a local string variable"; // deleted as soon as procedure has completed
  22.     Console.WriteLine(localDemoVariable);
  23. }
  24.  
  25. public static void Main(string[] args)
  26. {
  27.     CSharpScopeDemo(); //call the procedure
  28.     //the next line will cause an error because localDemoVariable does not exist any more
  29.     //Console.WriteLine(localDemoVariable); //un-comment this line to see the error of your ways...
  30.     Console.Write("Any key to quit");
  31.     Console.ReadKey(); //stop console closing
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement