CSMSL.Chemistry.Isotope.Isotope C# (CSharp) Method

Isotope() private method

Create a new isotope
private Isotope ( Element parentElement, int massNumber, double atomicMass, float abundance )
parentElement Element The parent element of the isotope
massNumber int The mass number of the isotope
atomicMass double The atomic mass of the isotope
abundance float The natural relative abundance of the isotope
        internal Isotope(Element parentElement, int massNumber, double atomicMass, float abundance)
        {
            Element = parentElement;
            MassNumber = massNumber;
            AtomicMass = atomicMass;
            RelativeAbundance = abundance;
        }