Hi
Im working on a project that needs Pastel's SDK's reference.
I have added all the references needed.
Now I need to make use of it...
What i have so far.
using PasSDK; //this is at the top of my Form.cs
PasSDK.PastelPartnerSDK SDK; //this is in the namespace (i think it's wrong)
in Visual Basic it does this:
Dim SDK As New PasSDK.PastelPartnerSDK
I'm sure that this is a very simple thing...
Please assist.
Thanks
Loading
Felipe MarksPosted Dec 4, 2009, 2:06 AM
Thanks for the replies...
Both of you are correct. The advise really helped.
I have a book in front of me now, that helps alot and the SDK's help too ;-)
thanks again guys!
theLizardPosted Dec 3, 2009, 4:34 PM
You need to add reference to the DLL's (API's, Assemblies etc) that store the functions you want to use in your application.
You need to read the documentation for the SDK you want to implement.
Good luck..
Sam HobbsPosted Dec 3, 2009, 12:53 PM
PasSDK.PastelPartnerSDK SDK = new PasSDK.PastelPartnerSDK();
However use of all capitals as in "SDK" traditionally is avoided (usually not done). You can, and as a beginner I don't want to confuse you but just understand that it is often avoided.
You need to get a good book about C# since you will have many, many more questions such as this.