I wanted to download the lame library for use in my C# project to convert audio. I found the files to use here (libmp3lame)
When I downloaded the archive, I found the .dll
I was looking for but along with them, there were 2 others files:
- libmp3lame.dll
- libmp3lame.exp
- libmp3lame.lib
My question:
- 1 What are these files used for? And how can I make use of them in my project apart from the
.dll
file - What benefit do these files give me that the
.dll
library cant?
Edit: I have a feeling that these files are not for use in C#. More for C++. But either way, what are those files? And what are they used for?