PERWAPI.LocalBinding.LocalBinding C# (CSharp) Method

LocalBinding() private method

Create a new local binding object.
private LocalBinding ( int index, string name ) : System
index int The index of the local in the locals tables.
name string The name of the local.
return System
        internal LocalBinding(int index, string name)
        {
            _index = index;
               _name = name;
        }