vote up 18 vote down star
    string [] files = new string[2];
    files[0] = "ThinkFarAhead.Example.Settings.Configuration_Local.xml";
    files[1] = "ThinkFarAhead.Example.Settings.Configuration_Global.xml";

    //Resharper complains this is an "access to modified closure"
    for (int i = 0; i < files.Length; i++ )
    {
        // Resharper disable AccessToModifiedClosure
        if(Array.Exists(Assembly.GetExecutingAssembly().GetManifestResourceNames(),
        delegate(string name) { return name.Equals(files[i]); }))
             return Assembly.GetExecutingAssembly().GetManifestResourceStream(files[i]);
        // ReSharper restore AccessToModifiedClosure
    }

The above seems to work fine though resharper complains that this is "access to modified closure". Can any one shed light on this?

Thanks in advance.

(this topic continued here)

flag

42% accept rate
Wouldn't Contains method help here instead of a less easy to read code here? – shahkalpesh Oct 25 '08 at 4:28
I apologize, if you are just trying to understand closures. – shahkalpesh Oct 25 '08 at 4:29
Contains()? of Array class? [FYI, I don't seem to be able to find it]... Can you be a bit more specific, Shah? – Vyas Bharghava Oct 26 '08 at 3:13
Its an explicit interface implementation. <pre> <code> string [] files = new string[2]; files[0] = "a"; files[1] = "b"; IList<string> fileList = files as IList<string>; Console.WriteLine(fileList.Contains("a")); Console.WriteLine(fileList.Contains("c")); </code> </pre> – shahkalpesh Nov 2 '08 at 0:09
I assume this is a sample code. But, use a variable to refer to array returned by GetManifestResourceNames & make 2 calls (each for 1 config) to check whether it is part of array. No need to write a for loop and call to GetManifestResourceStream in the loop. My thoughts are based on code above. – shahkalpesh Nov 2 '08 at 0:14

1 Answer

vote up 33 vote down check

In this case, it's okay, since you are actually executing the delegate within the loop.

If you were saving the delegate and using it later, however, you'd find that all of the delegates would throw exceptions when trying to access files[i] - they're capturing the variable i rather than its value at the time of the delegates creation.

In short, it's something to be aware of as a potential trap, but in this case it doesn't hurt you.

See the bottom of this page for a more complex example where the results are counterintuitive.

link|flag
Thanks Jon, that helped! :) – Vyas Bharghava Oct 24 '08 at 22:42
could you comment on this -> stackoverflow.com/questions/304258/… – faulty Nov 20 '08 at 3:40
@faulty: Marc's said everything I want to say :) – Jon Skeet Nov 20 '08 at 7:59

Your Answer

Get an OpenID
or

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