Alexandria.Engines.GoldBox.Resources.ScriptInstruction.GetIntegerOperand C# (CSharp) Méthode

GetIntegerOperand() private méthode

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