Alexandria.Engines.GoldBox.Resources.ScriptInstruction.GetIntegerOperand C# (CSharp) Метод

GetIntegerOperand() приватный Метод

private GetIntegerOperand ( int index ) : int?
index int
Результат int?
        int? GetIntegerOperand(int index)
        {
            ScriptOperand operand = GetOperand(index); return operand.IsValid && operand.IsValue ? (int?)operand.AsValue : null;
        }