Alexandria.Engines.GoldBox.Resources.ScriptInstruction.GetIntegerOperand C# (CSharp) Method

GetIntegerOperand() private method

private GetIntegerOperand ( int index ) : int?
index int
return int?
        int? GetIntegerOperand(int index)
        {
            ScriptOperand operand = GetOperand(index); return operand.IsValid && operand.IsValue ? (int?)operand.AsValue : null;
        }