vote up 1 vote down star

Can I assign each value in an array to separate variables in one line in C#? Here's an example of what I want in Ruby code:

irb(main):001:0> str1, str2 = ["hey", "now"]
=> ["hey", "now"]
irb(main):002:0> str1
=> "hey"
irb(main):003:0> str2
=> "now"

I'm not sure if what I'm wanting is possible in C#.

flag

79% accept rate
1  
Wow, ugly and confusing. Reminds me of my last date. – Will Sep 14 at 15:12
@Will: Really? I think it's nice and succinct, while still being clear and readable. I rather like the feature in python and use it frequently. – Randolpho Sep 14 at 15:16
From a C# perspective, definitely. It looks like you're assigning a reference to a single array to two different varaibles... like str1 = new string[] {"one","two"}; str2 = str1; So its immediately confusing to C# developers. The ugly bit was just so I could fit in the joke. – Will Sep 14 at 15:19
1  
Perhaps if C# is your only language, then yes, I suppose it looks kinda ugly. Maybe you should consider broadening your horizons? Anyway, although I've never developed in ruby, I've done a ton in python, so that assignment is not new to me at all. It looks like a simple tuple creation and an unpack (also called a tuple assignment). Although Ruby apparently uses brackets [] rather than parens () like python, it's otherwise syntactically identical. Based on comments from @Sarah, I expect it functions identically. – Randolpho Sep 14 at 18:37

4 Answers

vote up 4 vote down check

This is not possible in C#.

The closest thing I can think of is to use initialization in the same line with indexs

strArr = new string[]{"foo","bar"};
string str1 = strArr[0], str2 = strArr[1];
link|flag
1  
That's essentially what ruby does under the covers; the thing @Sarah wants to do is basically syntactic sugar. – Randolpho Sep 14 at 15:13
I'd call it syntactic s-omething. Does Ruby hide the differences between memory allocation of primitives and reference types??? – Will Sep 14 at 15:20
1  
Ruby is a scripting language. There are no primitive types; they're all on the heap -- reference types. – Randolpho Sep 14 at 18:33
vote up 1 vote down

You can do it in one line, but not as one statement.

For example:

int str1 = "hey"; int str2 = "now";

Python and ruby support the assignment you're trying to do; C# does not.

link|flag
vote up 1 vote down

I'm not sure if what I'm wanting is possible in C#.

It's not.

link|flag
vote up 0 vote down

No, but you can initialize an array of strings:

string[] strings = new string[] {"hey", "now"};

Although that's probably not too useful for you. Frankly its not hard to put them on two lines:

string str1 = "hey";
string str2 = "now";
link|flag

Your Answer

Get an OpenID
or

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