User Omer Mor - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T12:27:23Zhttp://stackoverflow.com/feeds/user/61061http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/194484/whats-the-strangest-corner-case-youve-seen-in-c-or-net/1800162#18001620Answer by Omer Mor for What's the strangest corner case you've seen in C# or .NET?Omer Mor2009-11-25T21:42:14Z2009-11-25T21:42:14Z<p>This is one that I like to ask at parties (which is probably why I don't get invited anymore):</p>
<p>Can you make the following piece of code compile?</p>
<pre><code>public void Foo()
{
this = new Teaser();
}
</code></pre>
<p>An easy cheat could be:</p>
<pre><code>string cheat = @"
public void Foo()
{
this = new Teaser();
}
";
</code></pre>
<p>But the real solution is this:</p>
<pre><code>public struct Teaser
{
public void Foo()
{
this = new Teaser();
}
}
</code></pre>
<p>So it's a little know fact that value types (structs) can reassign their <code>this</code> variable.</p>
http://stackoverflow.com/questions/1708415/connecting-to-a-remote-queue-via-the-hosts-file/1747458#17474581Answer by Omer Mor for Connecting to a remote queue via the hosts fileOmer Mor2009-11-17T08:57:56Z2009-11-17T13:37:42Z<p>We are also using a hosts file in our environment and found out (the hard way) that MSMQ does not support it.
Our solution is to use an abstraction layer (ITransport) over MSMQ, and let this layer replace host names (that might be found in a hosts file) with ip addresses. It is easily done using the <a href="http://msdn.microsoft.com/en-us/library/system.net.dns.aspx" rel="nofollow">Dns class</a>.</p>
http://stackoverflow.com/questions/603544/nhibernate-mapping-trouble1NHibernate mapping troubleOmer Mor2009-03-02T19:00:47Z2009-08-20T04:00:02Z
<p>Hello. I have the following object model:</p>
<ul>
<li>A top-level abstract class <code>Element</code> with many children and descendants. </li>
<li>A class <code>Event</code>.</li>
<li>Each <code>Element</code> contains a bag of <code>Event</code>s. </li>
<li>Each <code>Event</code> has a pointer to the parent <code>Element</code>. </li>
</ul>
<p>Up till now - pretty standart one-to-many relationship. </p>
<p>But, I want to use table per concrete class strategy. So, the class <code>Element</code> is not mapped to the database. I've tried to solve it this way: each of the concrete descendants of <code>Element</code> defines its own Bag of <code>Event</code>s. The problem with this is that each <code><bag></code> element contains a <code><key></code> element. That key points to the <code>Parent</code> property of <code>Event</code>. It also makes the <code>Parent</code> column in the <code>Event</code>s table a foreign key to the table which contains the Bag! But one column can't be a foreign key to several tables and I'm getting an exception on insert. </p>
<p>I've also tried to make the <code>Parent</code> field in the <code>Event</code>s table a many-to-any kind of field. That worked. But when I want to make the relation bidirectional, meaning, to add the bags to the descendants of <code>Element</code> I come back to the same problem. Bag => foreign key => exception on insert. </p>
<p>I'm sure this case isn't as unique as it seems.
Thank you in advance for your help.</p>
http://stackoverflow.com/questions/173080/c-net-3-0-3-5-features-in-2-0-using-visual-studio-2008/659460#6594602Answer by Omer Mor for C# .NET 3.0/3.5 features in 2.0 using Visual Studio 2008Omer Mor2009-03-18T18:06:30Z2009-03-18T18:06:30Z<p>You can use Mono's version of the System.Core which fully supports LINQ & Expression Trees.
I compiled its source against .net 2.0, and now I can use it in my .net2.0 projects.
This is great for projects that needs to be deployed on win2k, where .net3.5 is not available.</p>
http://stackoverflow.com/questions/48148/tool-for-analyzing-net-app-memory-dumps/499583#4995830Answer by Omer Mor for Tool for analyzing .Net app memory dumpsOmer Mor2009-01-31T21:11:00Z2009-01-31T21:11:00Z<p>I fully recommend .Net Memory Profiler.
Beside being a great live memory profiler for .Net applications, it can also load memory dumps, and let you traverse the objects in the dump in a very intuitive an easy way.</p>
<p>Opening big dump (> 1 GB) can take a few hours though, but for us it's worth the wait.
I don't know if they have trial version, but if they do you should definitely give them a shot.</p>
http://stackoverflow.com/questions/173080/c-net-3-0-3-5-features-in-2-0-using-visual-studio-2008/659460#659460Comment by Omer Mor on C# .NET 3.0/3.5 features in 2.0 using Visual Studio 2008Omer Mor2009-11-24T08:56:45Z2009-11-24T08:56:45Znope. plain old .NET 2.0. Works great even on win2k machines.