Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to translate some code from VB.Net to C#, but I've run into an issue.

The Vb.Net line of code I want to translate is:

client.Applicants = New wcf_Integration.Applicant() {New wcf_Integration.Applicant}

I tried to translate it to:

Client.Applicants = new wcf_Integration.Applicant[1];
Client.Applicants[0] = new Applicant();

However, this is giving me a nasty 'Object reference is not set to an instance of an object' error.

Any help on this would be very much appreciated. :)

share|improve this question
3  
Find out why Client is null. – Hans Passant Dec 9 '11 at 11:57
Hmm, the c# syntax looks ok - makes me wonder about the getter for the Applicants property. Have you checked that? Also, FYI, you can do it in a single line like this if you want: Client.Applicants = new [] { new wcf_Integration.Applicant() }; – kmp Dec 9 '11 at 11:59

3 Answers

up vote 4 down vote accepted

You can also use an array initializer syntax

Clients.Applicants = new []{new Applicant()};
share|improve this answer
Thanks for the reply. :) Still get an object reference etc. error with that one. – Henrik Valve Dec 9 '11 at 12:12
1  
Then Clients is null, or the property setter for Clients.Applicants does some stuff that trigger an NPE. – Florian Doyon Dec 9 '11 at 13:13
Thank you! I had Client = new ClientObject(); after the Clients.Applicants = new []{new Applicant()}; line when it should have been before. Silly mistake! – Henrik Valve Dec 9 '11 at 13:33

try this:

var myApplicants = new wcf_Integration.Applicant[1];
myApplicants[0] = new Applicant();
share|improve this answer
Or even: Client.Applicants = new [] { new Applicant() }; – Minustar Dec 9 '11 at 11:59

May be Client is null. So Client.Applicants rises an exception. It has nothing to do with the array.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.