DeenGames.Valence.Model.Atom.Atom C# (CSharp) Метод

Atom() публичный Метод

public Atom ( string name, string element, int ionCharge, int electronegativity, string description ) : System
name string
element string
ionCharge int
electronegativity int
description string
Результат System
        public Atom(string name, string element, int ionCharge, int electronegativity, string description)
        {
            this._name = name;
            this._element = element;
            this._ionCharge = ionCharge;
            this._electronegativity = electronegativity;
            this._description = description;
        }