| Author |
Message |
chaleks
Joined: 27 Nov 2010 Posts: 1
|
Posted: Sat Nov 27, 2010 5:50 pm Post subject: null coalescing operator - Reflector's bug? |
|
|
I have encountered the following issue.
http://stackoverflow.com/questions/4292142/c-compiling-optimizations-null-coalescing-operator-updated-reflectors-bug
C# Code:
===============
| Code: |
private static string host;
public static string Host
{
get
{
return host ?? (host= (ConfigurationManager.AppSettings["Host"] ?? "host.ru"));
}
} |
===============
Reflector's output:
===============
| Code: |
public static string Host
{
get
{
if (Helper.host == null)
{
string host = Helper.host;
}
return (Helper.host = ConfigurationManager.AppSettings["Host"] ?? "host.ru");
}
} |
Those pieces of code mean different logics. Is this a bug? |
|
| Back to top |
|
 |
Clive Tong
Joined: 04 Dec 2008 Posts: 281
|
Posted: Mon Nov 29, 2010 10:38 am Post subject: |
|
|
| Thanks for reporting this. I've logged it as issue RP-779. and will investigate it further. |
|
| Back to top |
|
 |
|
|
All times are GMT + 1 Hour
|
| Page 1 of 1 |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group