ADBaseLibrary.Matroska.Objects.EbmlFloat.New C# (CSharp) Méthode

New() public méthode

public New ( ) : EbmlGeneric
Résultat EbmlGeneric
        public override EbmlGeneric New()
        {
            EbmlFloat b = new EbmlFloat();
            b.Id = Id;
            b.InputOffset = InputOffset;
            b.Value = Value;
            b.Weight = Weight;
            return b;
        }