Ejemplo n.º 1
0
 /// <summary>
 /// Gets a <see cref="Shell"/> with the specified symbol.
 /// </summary>
 /// <param name="symbol">The symbol.</param>
 /// <returns></returns>
 public Shell this[char symbol] => Shells.FirstOrDefault(x => x.Symbol == symbol);
Ejemplo n.º 2
0
        public void HybridizeOrbits(int hybridizedCount)
        {
            var lShell = Shells.FirstOrDefault(s => s is LShell) as LShell;

            lShell?.HybridizeOrbits(hybridizedCount);
        }