PERWAPI.Local.GetIndex C# (CSharp) Method

GetIndex() public method

public GetIndex ( ) : int
return int
        public int GetIndex()
        {
            return index;
        }

Usage Example

Example #1
0
 /// <summary>
 /// Bind a local to the CIL instructions.
 /// </summary>
 /// <param name="local">The local variable to load.</param>
 /// <returns>The LocalBinding object created for the given Local object.</returns>
 public LocalBinding BindLocal(Local local)
 {
     return BindLocal(local.Name,local.GetIndex());
 }