Variable.test C# (CSharp) Method

test() public method

public test ( ) : void
return void
            public void test()
            {
                StaticName = StaticName + " Lauren"; 
                Console.WriteLine("  static ={0}",StaticName);
                nonStName = nonStName + "Bean ";
                Console.WriteLine("  NeStatic neSt={0}", nonStName);
    
            }
        }

Usage Example

    static void Main()
    {
        Variable var = new Variable();

        var.test();
        Variable var1 = new Variable();

        var1.test();
        Console.ReadKey();
    }
All Usage Examples Of Variable::test
Variable