public static TdfDoubleVal Create(string Label, DoubleVal v) { TdfDoubleVal res = new TdfDoubleVal(); res.Set(Label, 8); res.Value = v; return(res); }
public static TdfDoubleVal ReadTdfDoubleVal(Tdf head, Stream s) { TdfDoubleVal res = new TdfDoubleVal(); res.Label = head.Label; res.Tag = head.Tag; res.Type = head.Type; res.Value = ReadDoubleVal(s); return(res); }