[Access to foreach variable in closure.
May have different behaviour when compiled with different versions of compiler.]

I know how fix this warning but i want know why get this warning ?
Is this for CLR version?
Is there relevance with IL?
|
|
There's two parts to this warning. The first is...
...which is not invalid per se but it is counter-intuitive at first glance. It's also very hard to do right. (So much so that the article I link to below describes this as "harmful".) Take your query, noting that the code you've excerpted is basically an expanded form of what the C# compiler (before C# 5) generates for
Well, it is valid syntactically. And if all you're doing in your loop is using the value of
If you run this code, you'll get the following console output:
This is what you expect. To see something you probably don't expect, run the following code immediately after the above code:
You'll get the following console output:
Why? Because we created five functions that all do the exact same thing: print the value of At the point at which we go to use them, they do exactly what we ask: print the value of Which is exactly what we asked for, but probably not what we want. The second part of the warning...
...is what it is. Starting with C# 5, the compiler generates different code that "prevents" this from happening via Thus the following code will produce different results under different versions of the compiler:
Consequently, it will also produce the R# warning :) My first code snippet, above, will exhibit the same behaviour in all versions of the compiler, since I'm not using
I'm not quite sure what you're asking here. Eric Lippert's post says the change happens "in C# 5". So presumably you have to target .NET 4.5 or later with a C# 5 or later compiler to get the new behaviour, and everything before that gets the old behaviour. But to be clear, it's a function of the compiler and not the .NET Framework version.
Different code produces different IL so in that sense there's consequences for the IL generated. 1 |
||||
|
|