For IntPtr null won't work.
Use IntPtr.Zero.
Main Topics
Browse All TopicsHi, I'm calling "DsCrakName" C++ function from a C# Windows application. A new class is created as a wraper for this fuction. The code is taken from this url http://www.pinvoke.net/def
Here is my code calling DsCrakName
string childSidKey = null;
IntPtr ppResult;
IntPtr hds;
childSidKey = sid;
Domain domain;
string[] sids = { sid };
DSAPI.DsCrackNames(hds, DSAPI.DS_NAME_FLAGS.DS_NAM
DSAPI.DS_NAME_FORMAT.DS_SI
1, sids,out ppResult);
I'm getting compiling error for the hds error. HOw can I set this to represent "NULL" in C++? Thank you.
error CS0165: Use of unassigned local variable 'hds'
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: Mk3890Posted on 2008-07-07 at 18:27:08ID: 21950035
Perhaps changing
IntPtr hds;
to
IntPtr hds = null;
Would do the trick.