HydrogenAudio

Hosted Forums => foobar2000 => Development - (fb2k) => Topic started by: jezbo on 2012-02-02 18:45:31

Title: c# wrapper
Post by: jezbo on 2012-02-02 18:45:31
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++
Title: c# wrapper
Post by: Zao on 2012-02-02 20:33:23
See foo_title (http://foo-title.sourceforge.net/)'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.
Title: c# wrapper
Post by: jezbo on 2012-02-08 08:36:38
See foo_title (http://foo-title.sourceforge.net/)'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.