Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: c# wrapper (Read 2943 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

c# wrapper

Has anyone written (or know the existence of) a C# wrapper to the foobar2000 SDK? Failing that, does anyone have any advice how to access the SDK functions from C#? Is it even possible? I'm not sure where to begin. I'm experienced in C# but not C++

c# wrapper

Reply #1
See foo_title's source. You've got to do some shenanigans to load managed assemblies, and even if you manage to do it, you've got to deal with that the CLR version in the application might not be the one you expect.
Stay sane, exile.

c# wrapper

Reply #2
See foo_title's source. You've got to do some shenanigans to load managed assemblies, and even if you manage to do it, you've got to deal with that the CLR version in the application might not be the one you expect.


Thanks - it's a bit scary.