ME3Creator.Objectselect.GetValue C# (CSharp) Method

GetValue() public static method

public static GetValue ( PCCPackage p, int index ) : int?
p ME3LibWV.PCCPackage
index int
return int?
        public static int? GetValue(PCCPackage p, int index)
        {
            Objectselect prompt = new Objectselect();
            prompt.Init(p, index);

            return prompt.ShowDialog() == DialogResult.OK ? prompt.returnValue() : null;
        }
    }