flaclibsharp icon indicating copy to clipboard operation
flaclibsharp copied to clipboard

New Metadata not accessible through fast properties

Open AaronLenoir opened this issue 7 years ago • 0 comments

// Open file that contains NO Vorbis Comment metadata block
using (FlacFile file = new FlacFile(Path.Combine("Data", "testfile5_temp.flac")))
{
        // Add new Vorbis Comment metadata block
	file.Metadata.Add(new VorbisComment());

        // VorbisComment should not be null
	Assert.IsNotNull(file.VorbisComment);
}

AaronLenoir avatar Apr 03 '18 22:04 AaronLenoir