3
votes
Accessing audio/video metadata with .NET
You can use this free .NET library to read/write MP3 metadata.
Link
…
0
votes
In C#, why can’t a List<string> object be stored in a List<object> variable
Here is another pre-.NET 3.5 solution for any IList whose contents can be cast implicitly.
public IList<B> ConvertIList<D, B>(IList<D> list) where D : B
{
List …
