V
vertigo
Hello
I write program in C#. I wanted to load mp3 files to read it's size, title
and others. So i downloaded id3lib from: id3lib.sourceforge.net,
compiled it using Visual Studio NET (with project conversion).
And i received id3libD.lib file.
I added that file to my project - but what next ?
In examples of usage of that library i need to include:
#include <id3/tag.h>
#include <id3/utils.h>
#include <id3/misc_support.h>
#include <id3/readers.h>
#include <id3/io_helpers.h>
How can i do it in C# ?
When i try to call first fuction to initialize library:
ID3D_INIT_DOUT();
i receive:
The name 'ID3D_INIT_DOUT' does not exist in the class or namespace
'MyClass'
How can solve this problem ?
Thanx
Michal
I write program in C#. I wanted to load mp3 files to read it's size, title
and others. So i downloaded id3lib from: id3lib.sourceforge.net,
compiled it using Visual Studio NET (with project conversion).
And i received id3libD.lib file.
I added that file to my project - but what next ?
In examples of usage of that library i need to include:
#include <id3/tag.h>
#include <id3/utils.h>
#include <id3/misc_support.h>
#include <id3/readers.h>
#include <id3/io_helpers.h>
How can i do it in C# ?
When i try to call first fuction to initialize library:
ID3D_INIT_DOUT();
i receive:
The name 'ID3D_INIT_DOUT' does not exist in the class or namespace
'MyClass'
How can solve this problem ?
Thanx
Michal