Knot3.Game.Data.KnotStringIO.KnotStringIO C# (CSharp) Method

KnotStringIO() public method

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
return 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