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.

Not found what i'm looking for yet so here's my last resort.

How do i create an array in c# for android that i can write a string of characters too?

I have an editText box and a button.. i want to enter text into the editText box and then store the data input to the array when the button is clicked.

I would really appreciate code examples as i really don't understand this and there isn't anything that i've found out there about doing this in c# for android. Thanks.

share|improve this question
Why not just use a string? – Patashu Mar 18 at 0:29

1 Answer

up vote 0 down vote accepted

You need to create an array using:

string[] strArr = editText.Text.Split('\n');

Or something very similar. Basically you are treating the input as a delimited string, a la a CSV, however in this case the delimiter is the newline character. If you need to access strArr on a larger basis you just declare it outside the method at the top of the class.

share|improve this answer
Thank you :) do you know how i would go about implementing the button into this? So that after the text is in the field, clicking the button stores it to the array.. – Scott Wright Mar 18 at 0:45
I haven't ventured into C# (Monodroid) yet. Give me about 6 weeks and I'll be neck deep in Monodroid and Monotouch. That's a different question all together. – TheGreatCO Mar 18 at 0:49

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.