Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
    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)

share|improve this question
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
show 1 more comment

2 Answers

up vote 181 down vote accepted

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.

share|improve this answer
Thanks Jon, that helped! :) – Vyas Bharghava Oct 24 '08 at 22:42

I know this is an old question, but I've recently been studying closures and thought a code sample might be useful. Behind the scenes, the compiler is generating a class that represents a lexical closure for your function call. It probably looks something like:

            private sealed class Closure
            {
                public string[] files;
                public int i;

                public bool YourAnonymousMethod(string name)
                {
                    return name.Equals(this.files[this.i]);
                }
            }

As mentioned above, your function works because the predicates are invoked immediately after creation. The compiler will generate something like:

            private string Works()
            {
                var closure = new Closure();

                closure.files = new string[3];
                closure.files[0] = "notfoo";
                closure.files[1] = "bar";
                closure.files[2] = "notbaz";

                var arrayToSearch = new string[] { "foo", "bar", "baz" };

                //this works, because the predicates are being executed during the loop
                for (closure.i = 0; closure.i < closure.files.Length; closure.i++)
                {
                    if (Array.Exists(arrayToSearch,
                          closure.YourAnonymousMethod))
                        return closure.files[closure.i];
                }

                return null;
            }

On the other hand, if you were to store and then later invoke the predicates, you would see that every single call to the predicates would really be calling the same method on the same instance of the closure class and therefore would use the same value for i.

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.