Knot3.Game.Data.KnotStringIO.KnotStringIO C# (CSharp) Méthode

KnotStringIO() public méthode

Erstellt ein neues Objekt und setzt die \glqq Name\grqq~- und \glqq Edge\grqq~-Eigenschaften auf die im angegebenen Knoten enthaltenen Werte.
public KnotStringIO ( Knot knot ) : System
knot Knot
Résultat System
        public KnotStringIO(Knot knot)
        {
            Name = knot.Name;
            try {
                edgeLines = ToLines (knot);
            }
            catch (Exception ex) {
                Log.Debug (ex);
            }
        }

Same methods

KnotStringIO::KnotStringIO ( string content ) : System