The variable 'variable' is assigned but never used
The compiler warns, at level three, when you declare and assign a variable, but do not use it.
The following sample generates CS0219:
public class MyClass { public static void Main() { int a = 0; // CS0219 } }