Number of atomic element to count using a list

Namespace:  Hyleos.Chemistry
Assembly:  Hyleos.Chemistry (in Hyleos.Chemistry.dll) Version: 1.0.9.4 (1.0.9.4)

Syntax

C#
public Dictionary<byte, int> CountAtomicElement(
	List<byte> atomicNumbers
)
Visual Basic (Declaration)
Public Function CountAtomicElement ( _
	atomicNumbers As List(Of Byte) _
) As Dictionary(Of Byte, Integer)
Visual C++
public:
Dictionary<unsigned char, int>^ CountAtomicElement(
	List<unsigned char>^ atomicNumbers
)

Parameters

atomicNumbers
Type: System.Collections.Generic..::.List<(Of <(Byte>)>)
List of atomic number to count

Return Value

Hashtable where key is the atomic number and value the number of counted atom

See Also