[LINQ via C#] - [C# Features] Non-local variable In a C# class, it is perfectly nature normal thing for a method to access a variable defined inside or outside its body, e.g.:public class DisplayClass{ int nonLocalVariable = 0; // Outside the scope of method Add. public int Add() {
↧