I got my previous "problem" sorted out, sort of.. While the project and "client" properties had the reference to the Teamspeak.Sdk, apparently it also has to be added manually into the 'References' section of the solution explorer.. so many differences in the IDE to get used to. Anyway, in copying and pasting function code in between the example client console app and my new windows forms app, I came across this reference...
Code:
private static void Initialize()
{
LibraryParameters parameters = new LibraryParameters("../../../../ts3_sdk_3.0.3.2/bin/");
parameters.UsedLogTypes = LogTypes.File | LogTypes.Console | LogTypes.Userlogging;
Considering that this sample is in the "ts3_sdk_dotNet_0.1" why would the code point to the C++ bin and not the dot net bin?