ByRef.Program.VariableToParameter C# (CSharp) Method

VariableToParameter() static private method

static private VariableToParameter ( ) : void
return void
        static void VariableToParameter()
        {
            var x = 1;
            F(x); // 変数 x から、F の引数 x に値を渡す
        }