Visual C# General
If that SDK exports C style functions, you can call them from C# using the PInvoke functionality as described here
http://msdn2.microsoft.com/en-us/library/55d3thsc(VS.80).aspx
If that SDK exports classes then you may need to write a C wrapper for those and call those wrapper methods using PInvoke.