CNCGUI.MainForm.ParseLV C# (CSharp) Méthode

ParseLV() private méthode

private ParseLV ( string &line, string fmt, int idx ) : void
line string
fmt string
idx int
Résultat void
        private void ParseLV(ref string line, string fmt, int idx)
        {
            cnc.Axises[idx].LatchVelocity = 0F;
            if (scanf.Parse(line, string.Concat(fmt, " latch velocity %f")) == 1)
                cnc.Axises[idx].LatchVelocity = (float)scanf.Results[0];
        }