vote up 0 vote down star

Hi all,

I want to trim the column headers of a CSV file, fields below is an array that contains the header names, where would I place trim()? I've placed it with the foreach loop but VS tells me "cannot assign field because it is a foreach iteration variable". What am I doing wrong?

while ((fields = csv.GetCSVLine()) != null) 
{
    if (header)
    {
    	foreach (string field in fields) 
    	{
              //field = field.trim(); //VS: "cannot assign field because it is a foreach iteration variable"
    	  headers.Add(field);
    	}
}
flag

4 Answers

vote up 8 vote down check

You can do it on the same line as the Add() call. No need to overwrite the variable field if you pass the result of Trim() directly to Add().

foreach (string field in fields) 
{
    headers.Add(field.Trim());
}
link|flag
Brilliant thanks. – Kurt Jun 27 at 18:41
vote up 7 vote down

You're trying to change the value of the item you're working on.

Just do

var trimmedField=field.Trim();
headers.Add(trimmedField);
link|flag
5  
Or to be more concise you could use headers.Add(field.Trim()); – DoctaJonez Jun 26 at 23:18
Equally sensible, especially if you only use the trimmed version once. – JasonTrue Jun 27 at 1:20
vote up 2 vote down
    foreach (string field in fields) 
    {
      headers.Add(field.Trim());
    }
link|flag
vote up 3 vote down

It seems to me that the compiler has already told you exactly what you're doing wrong: You're trying to assign something that's an iteration variable, which you're evidently not allowed to do.

The other answers here have told you what you can do instead: either copy the iteration variable into another variable and trim that, or skip the assignment altogether and add the trimmed value directly.

link|flag
To be fair, the compiler warning is really unhelpful about what you should be doing, and the MSDN docs really aren't spectacular either. But it all makes a certain sort of sense, once you start understanding how C# handles value and reference types. – andersop Jul 1 at 9:14

Your Answer

Get an OpenID
or

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