PERWAPI.Local.Local C# (CSharp) Method

Local() public method

Create a new local variable
public Local ( string lName, Type lType ) : System
lName string name of the local variable
lType Type type of the local variable
return System
        public Local(string lName, Type lType)
        {
            name = lName;
            type = lType;
        }

Same methods

Local::Local ( string lName, Type lType, bool isPinned ) : System