Have you added a reference to the MyspaceToolkit.dll? If not you can right click inside your solution explorer on the Bin folder and say Add Reference. Then navigate to the location of the MyspaceToolkit.dll and add the reference.
If you already have a reference to the DLL and you are trying to use it in an existing project you also need to import it into you code.
C#
using MyspaceToolkit;
VB
Import MyspaceToolkit
You should then be able to access the classes as described in the example application. I'll be releasing an update to the current version shortly. This would allow you to make calls directly to the MyspaceClient class instead of the transaction layer.
Ex: MyspaceClient mc = new MyspaceClient("AppKey", "SecretKey", "ApiVersion", "APIEndpointUrl", ..... etc.);
mc.GetFriends("UserId");
Thanks!
Joseph
