示例#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);
示例#2
0
文件: _All.cs 项目: nofuture-git/31g
        public void HybridizeOrbits(int hybridizedCount)
        {
            var lShell = Shells.FirstOrDefault(s => s is LShell) as LShell;

            lShell?.HybridizeOrbits(hybridizedCount);
        }