denismu321
New member
- Joined
- Oct 1, 2017
- Messages
- 4
- Programming Experience
- 3-5
Hi there ,
I just have a question concerning some program I want to write.
I cannot get it to work it always says :
"System.NullReferenceException: Object reference not set to an instance of an object."
Here is some code samples :
I cannot call any function without getting a null pointer exception.
Is this because some startup functions have not been called ,or are the functions essentially empty ones ?
Well I do not really understand what is wrong, so I looked for help here.
Thank you in advance.
I just have a question concerning some program I want to write.
I cannot get it to work it always says :
"System.NullReferenceException: Object reference not set to an instance of an object."
Here is some code samples :
using System; using System.Collections.Generic; using Steam4NET; using steamLogin; using System.Text; using System.Runtime.Serialization; namespace steamLogin { class functions { static void Main() { TSteamError err = new TSteamError(); int logged=0; ISteam003 steam = new ISteam003(); steam.IsLoggedIn(ref logged,ref err); } } }
I cannot call any function without getting a null pointer exception.
Is this because some startup functions have not been called ,or are the functions essentially empty ones ?
Well I do not really understand what is wrong, so I looked for help here.
Thank you in advance.