User Mike Two - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T02:10:22Z http://stackoverflow.com/feeds/user/23659 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1887206/sqlbulkcopy-failing-with-string-conversion-issue/1887265#1887265 1 Answer by Mike Two for SqlBulkCopy failing with String conversion issue Mike Two 2009-12-11T10:48:11Z 2009-12-11T10:48:11Z <p>sqlbulkcopy does not automatically map between columns with the same name. It assumes that your select will return columns in the same order it sees them in the destination table.</p> <p>So if there are 7 columns in the destination table and the view returns 5 it will try and put those 5 in the the first 5 columns of the destination table.</p> <p>The SqlBulkCopy class can take a collection of column mappings. That should do the trick</p> http://stackoverflow.com/questions/1872633/understanding-iterator-blocks-and-dispose-method/1872670#1872670 0 Answer by Mike Two for Understanding Iterator Blocks and Dispose Method . Mike Two 2009-12-09T09:34:36Z 2009-12-09T09:34:36Z <p>When you use .NET's iterator pattern with yield return you are getting a little state machine built for you. Calling dispose moves that state machine to it's final state. In that final state the iterator will no longer move forward but it will remember it's last state (Current). If you look at the generated IL (or maybe through Reflector, haven't tried) it becomes pretty clear.</p> http://stackoverflow.com/questions/1812006/what-open-source-software-has-quality-asp-net-mvc-c-code/1812014#1812014 1 Answer by Mike Two for What Open Source Software has Quality ASP.NET MVC C# code Mike Two 2009-11-28T08:50:02Z 2009-11-28T16:07:21Z <p>I have found <a href="http://nerddinner.codeplex.com/" rel="nofollow">NerdDinner</a> to be a good place to start.</p> <p><a href="http://www.tampadev.org/News/Details/ASPNETMVCSampleApplicationsOpenSourceExamplesTutorials" rel="nofollow">This</a> site has several examples.</p> http://stackoverflow.com/questions/1811983/which-is-the-best-mvc-v-2-learning-source/1811999#1811999 1 Answer by Mike Two for Which is the best MVC v.2 learning source? Mike Two 2009-11-28T08:40:56Z 2009-11-28T08:40:56Z <p>Scott Hanselman has a good series of screencasts <a href="http://www.hanselman.com/blog/ASPNETMVCPreview2ScreencastTutorials.aspx" rel="nofollow">here</a></p> <p>Also a good video from the latest PDC <a href="http://microsoftpdc.com/Sessions/FT22" rel="nofollow">here</a></p> http://stackoverflow.com/questions/1807581/performance-profiler-for-net-with-an-api/1807610#1807610 2 Answer by Mike Two for Performance profiler for .NET with an API Mike Two 2009-11-27T09:17:04Z 2009-11-27T09:17:04Z <p><a href="http://www.jetbrains.com/profiler/index.html" rel="nofollow">dotTrace</a> from JetBrains is good and has nice API</p> http://stackoverflow.com/questions/1803192/linq-get-table-column-names/1803685#1803685 0 Answer by Mike Two for LINQ: Get Table Column Names Mike Two 2009-11-26T13:33:03Z 2009-11-26T13:33:03Z <p>If you are talking about getting the columns for a mapped table then see <a href="http://stackoverflow.com/questions/1347209/how-do-i-get-the-columnattributes-from-a-linq-tabletentity/1347269#1347269">this answer</a> to see how to get to the column attributes. From there you can get the column names, types, etc.</p> http://stackoverflow.com/questions/1717702/which-addin-is-recommended-for-visual-studio-2008-c/1717731#1717731 0 Answer by Mike Two for Which addin is recommended for Visual Studio 2008 (C#) ? Mike Two 2009-11-11T20:08:04Z 2009-11-11T20:08:04Z <p>Resharper is a must for me.</p> <p>And if you are using subversion then VisualSVN is really good.</p> http://stackoverflow.com/questions/1634992/linq-to-sql-int16-gets-converted-as-int32-in-sql-command/1648433#1648433 5 Answer by Mike Two for Linq to SQL Int16 Gets Converted as Int32 In SQL Command Mike Two 2009-10-30T07:13:47Z 2009-11-10T12:03:35Z <p>Change the where clause to read</p> <pre><code>where !id.HasValue || m.Id == id.Value </code></pre> <p>There is something about the nullable short that is throwing it off. I'm not sure why, but I ran into this before and found adding <code>.Value</code> will work.</p> http://stackoverflow.com/questions/1661143/can-you-run-resharper-4-5-and-5-beta-side-by-side/1661156#1661156 1 Answer by Mike Two for can you run resharper 4.5 and 5 beta side by side Mike Two 2009-11-02T12:55:37Z 2009-11-02T12:55:37Z <p>I have resharper 5.0 installed in vs2010 beta2 and resharper 4.5 in vs2008. They both work just fine. Just make sure to uncheck the "install vs2008 integration" checkbox when installing resharper 5.</p> http://stackoverflow.com/questions/1551537/is-there-a-way-to-tell-which-tasks-are-currently-running-in-task-parallel-library 0 Is there a way to tell which Tasks are currently running in Task Parallel Library Mike Two 2009-10-11T19:30:17Z 2009-10-29T22:15:45Z <p>I can't see a way to see which tasks are running. There is the Task.Current property, but what if there are multiple tasks running? Is there a way to get this kind of information?</p> <p>Alternately, is there a built in way to get notified when a task starts or completes?</p> http://stackoverflow.com/questions/1590723/flatten-list-in-linq/1590739#1590739 10 Answer by Mike Two for Flatten List in LINQ Mike Two 2009-10-19T19:51:03Z 2009-10-28T10:52:49Z <p>Try <code>SelectMany()</code></p> <pre><code>var result = iList.SelectMany( i =&gt; i ); </code></pre> http://stackoverflow.com/questions/1629490/accessing-measurement-system-unit-names-kg-lb-m-in-etc-in-c/1629726#1629726 0 Answer by Mike Two for Accessing "Measurement System" unit names (kg/lb, m/in, etc) in C# Mike Two 2009-10-27T09:50:03Z 2009-10-27T09:50:03Z <p>@GenericTypeTea is right about the <code>RegionInfo</code> being the place to look.</p> <p>Additionally F# contains a lot of features for working with units of measure. It might make sense to build some of what you need in F# and call it from C#. </p> <p>See <a href="http://blogs.msdn.com/andrewkennedy/archive/2008/08/29/units-of-measure-in-f-part-one-introducing-units.aspx" rel="nofollow">this blog post</a> and the subsequent posts for information about F# and units of measure.</p> http://stackoverflow.com/questions/1623804/outofmemory-exception/1624030#1624030 1 Answer by Mike Two for OutOFMemory exception Mike Two 2009-10-26T10:14:44Z 2009-10-26T10:21:18Z <p>Either your application has used up the memory available to it or you have a problem with heap fragmentation.</p> <p>In the first case you have created enough objects to take up all of the memory and you still have reference to them so the garbage collector cannot clean them up.</p> <p>In the second case, heap fragmentation, you are trying to create an object that is bigger than the largest contiguous chunk of memory in the heap. This is more rare but certainly happens in some cases. The normal heap will get compacted during gc runs but the large object heap will not.</p> <p>There is a good <a href="http://msdn.microsoft.com/en-us/magazine/cc534993.aspx" rel="nofollow">article</a> on MSDN about the large object heap.</p> <p>Edit: I remembered another way to get out of memory. You can try and create an object that is larger than 2GB in size. That is the maximum object size in .NET even on 64-bit.</p> http://stackoverflow.com/questions/1623832/is-it-possible-using-resharper-to-remove-an-object-initializer/1623855#1623855 2 Answer by Mike Two for Is it possible using Resharper to remove an object initializer? Mike Two 2009-10-26T09:25:09Z 2009-10-26T09:25:09Z <p>Not that I can find, but the EAP for Resharper 5.0 has just recently opened up. Put in a feature request for it.</p> http://stackoverflow.com/questions/174968/how-many-parameters-are-too-many/1617971#1617971 1 Answer by Mike Two for How many parameters are too many? Mike Two 2009-10-24T13:08:39Z 2009-10-24T13:08:39Z <p>My rule of thumb is that I need to be able to remember the parameters long enough to look at a call and tell what it does. So if I can't look at the method and then flip over to a call of a method and remember which parameter does what then there are too many.</p> <p>For me that equates to about 5, but I'm not that bright. Your mileage may vary.</p> <p>You can create an object with properties to hold the parameters and pass that in if you exceed whatever limit you set. See Martin Fowler's <a href="http://books.google.co.uk/books?id=1MsETFPD3I0C&amp;lpg=PA271&amp;ots=pKQ4n4WIgc&amp;dq=martin%20fowler%20create%20parameter%20object&amp;pg=PA271#v=onepage&amp;q=&amp;f=false" rel="nofollow">Refactoring</a> book and the chapter on making method calls simpler.</p> http://stackoverflow.com/questions/1617493/how-many-parameters-is-too-many-for-a-function-method-or-constructor/1617516#1617516 3 Answer by Mike Two for How many parameters is too many for a function (method or constructor)? Mike Two 2009-10-24T09:49:54Z 2009-10-24T09:49:54Z <p>My rule of thumb is that I need to be able to remember the parameters long enough to look at a call and tell what it does. So if I can't look at the method and then flip over to a call of a method and remember which parameter does what then there are too many.</p> <p>For me that equates to about 5, but I'm not that bright. Your mileage may vary.</p> <p>You can create an object with properties to hold the parameters and pass that in if you exceed whatever limit you set. See Martin Fowler's <a href="http://books.google.co.uk/books?id=1MsETFPD3I0C&amp;lpg=PA271&amp;ots=pKQ4n4WIgc&amp;dq=martin%20fowler%20create%20parameter%20object&amp;pg=PA271#v=onepage&amp;q=&amp;f=false" rel="nofollow">Refactoring</a> book and the chapter on making method calls simpler.</p> http://stackoverflow.com/questions/1617349/wcf-service-queries/1617362#1617362 0 Answer by Mike Two for WCF service queries Mike Two 2009-10-24T08:30:32Z 2009-10-24T08:30:32Z <p>You should look at the <a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.servicebehaviorattribute.aspx" rel="nofollow">ServiceBehaviorAttribute</a> class and it's <code>InstanceContextMode</code> property. It controls the lifetime of your service object. </p> http://stackoverflow.com/questions/1617130/linq-not-updating-changed-class-property/1617170#1617170 1 Answer by Mike Two for Linq not updating changed class property Mike Two 2009-10-24T06:26:05Z 2009-10-24T06:57:55Z <p>EDIT: See the answer to <a href="http://stackoverflow.com/questions/206532/linq-not-updating-on-submitchanges">this question</a>. It might be the answer for you too. The answer turned out to be that LINQ to SQL will not do updates unless there is a primary key on the table. I bet you also need to set the primary key parts of the <code>ColumnAttribute</code> on the class. Since you have used the code generator you might need to regenerate that part after updating the table in the database. Assuming that is the problem of course.</p> <p>Does the class with the <code>ProcessCode</code> property implement <code>INotifyPropertyChanged</code>? And does the <code>ProcessCode</code> property fire the <code>PropertyChanged</code> event?</p> <p>You also need to make sure the <code>DataContext</code> has it's <code>ObjectTrackingEnabled</code> property set to true. It should be by default, but it is easy to check.</p> <p>You can also use the <code>GetChangeSet</code> method on the <code>DataContext</code> to see what the updates are. It could help with debugging. </p> http://stackoverflow.com/questions/1612518/what-is-the-accepted-practice-for-adding-nunit-tests-to-an-existing-solution/1612580#1612580 1 Answer by Mike Two for What is the accepted practice for adding Nunit tests to an existing solution? Mike Two 2009-10-23T10:29:14Z 2009-10-23T10:29:14Z <p>I prefer a new project in the same solution.</p> <p>Pros:</p> <ol> <li>Your tests always compile at the same time as the code under test.</li> <li>Your test code is in a separate assembly so you are always testing the public interface.</li> <li>Since your tests are not in the same project as code under test you do not have to deploy your tests with your application.</li> </ol> <p>Cons:</p> <ol> <li>You create a parallel namespace heirarchy that you should maintain if you move code under test around. Tools like resharper make this easier.</li> <li>Visual studio is a little slower when there are a lot of projects. Not an issue for a smaller number of projects.</li> </ol> http://stackoverflow.com/questions/1612122/to-cache-or-not-to-cache-getcustomattributes/1612151#1612151 2 Answer by Mike Two for To cache or not to cache - GetCustomAttributes Mike Two 2009-10-23T08:46:28Z 2009-10-23T08:46:28Z <p>Are you actually having a performance problem? If not then don't do it until you need it.</p> <p>It might help depending on how often you call the method with the same paramters. If you only call it once per <code>MemberInfo</code>, <code>Type</code> combination then it won't do any good. Even if you do cache it you are trading speed for memory consumption. That might be fine for your application.</p> http://stackoverflow.com/questions/1609865/how-good-are-the-resharper-5-0-nightly-builds/1611858#1611858 1 Answer by Mike Two for How good are the resharper 5.0 nightly builds? Mike Two 2009-10-23T07:25:54Z 2009-10-23T07:25:54Z <p>I have found it to be pretty good. I'm not using it on my production machine yet. I only have it running on my machine at home. I have not tried any of the ASP.NET or WPF stuff yet. The performance is acceptable but I'm hoping it gets better. Performance wise it is below 4.5 right now, but it is early. I will use it more when it is ready for vs2010 beta 2.</p> <p>Haven't tried any of the new functionality. I'm just using the basics (rename, find usages, pull up member).</p> http://stackoverflow.com/questions/1606273/net-assembly-loading-priorities/1606294#1606294 2 Answer by Mike Two for .NET assembly loading priorities Mike Two 2009-10-22T10:21:10Z 2009-10-22T10:27:34Z <p>Yes it check the GAC first. The loading rules are documented <a href="http://msdn.microsoft.com/en-us/library/yx7xezcf%28VS.71%29.aspx" rel="nofollow">here</a>. To fix your problem you should update the assembly version as you change the API.</p> http://stackoverflow.com/questions/1596579/best-type-to-set-as-return-type-for-methods-that-return-a-collection/1596608#1596608 1 Answer by Mike Two for Best Type to set as return type for methods that return a collection? Mike Two 2009-10-20T18:51:30Z 2009-10-22T07:53:04Z <p>I default to IEnumerable. I'm shooting for the minimal interface to expose. Both <code>IList&lt;T&gt;</code> and <code>IQueryable&lt;T&gt;</code> implement <code>IEnumerable&lt;T&gt;</code>. So unless you have other specific requirements for the methods I'd go for minimalism and use the least derived type. If you have other requirements in your calling code, such as performance of indexed lookups or getting the number of items in the collection then you might want to choose another type such as <code>ICollection&lt;T&gt;</code>.</p> http://stackoverflow.com/questions/1599466/remove-duplicates-from-datatable-and-custom-iequalitycomparerdatarow/1599517#1599517 1 Answer by Mike Two for Remove duplicates from DataTable and custom IEqualityComparer<DataRow> Mike Two 2009-10-21T08:46:58Z 2009-10-21T09:27:02Z <p>That is the way <code>Distinct</code> works. Intenally it uses the <code>GetHashCode</code> method. You can write the <code>GetHashCode</code> to do what you need. Something like</p> <pre><code> public int GetHashCode(DataRow obj) { var values = obj.ItemArray.Except(new object[]{ obj[obj.Table.PrimaryKey[0].ColumnName] }); int hash = 0; foreach (var value in values) { hash = (hash * 397) ^ value.GetHashCode(); } return hash; } </code></pre> <p>Since you know your data better you can probably come up with a better way to generate the hash.</p> http://stackoverflow.com/questions/1599575/enumerating-assemblies-in-gac/1599654#1599654 1 Answer by Mike Two for enumerating assemblies in GAC Mike Two 2009-10-21T09:17:19Z 2009-10-21T09:17:19Z <p>You don't really need to write something in C# to find out if this specific dll is in the gac. You can use <a href="http://msdn.microsoft.com/en-us/library/ex0ss12c%28VS.80%29.aspx" rel="nofollow">gacutil.exe</a> with the /l option from the command line to list the contents of the GAC.</p> http://stackoverflow.com/questions/1591994/is-the-amazon-kindle-suitable-for-programming-books/1592908#1592908 5 Answer by Mike Two for Is the Amazon Kindle suitable for programming books? Mike Two 2009-10-20T07:01:57Z 2009-10-20T15:58:38Z <p>I love my Kindle for non-technical books, but the programming books I've tried were hard to read. Code samples were sometimes poorly formatted. You couldn't see a diagram and the text at the same time. Personally I'm often flipping back and forth between pages to go back and look at a previous example and I found that hard to do.</p> <p>I also don't read technical books cover to cover very often. They are usually more skim and then refer back kinds of books to me. Kindle has decent enough bookmarking but it isn't the same as post it notes and dog earing.</p> <p>I have no tried a Kindle DX(larger screen), but I still think it would have issues. I just like the fast flip back and forth I can get with paper for technical books.</p> <p>I travel a lot so the Kindle is fantastic for non-technical books. I can carry a bunch of books at a time in such a tiny package. The battery lasts a very long time if the wireless off. It keeps track of where I am in each book.</p> http://stackoverflow.com/questions/1594917/what-features-should-java-7-onwards-have-to-encourage-switching-from-c/1595059#1595059 4 Answer by Mike Two for What features should Java 7 onwards have to encourage switching from C#? Mike Two 2009-10-20T14:34:09Z 2009-10-20T14:34:09Z <p>Momentum. I have done a lot of development on both platforms. I'm enjoying the .NET side more because of the way the C# language is evolving. Java's evolution seems to be more a reaction to C# than an actual vision. So I think the best thing for Java to do is ignore .NET and create something new of its own.</p> http://stackoverflow.com/questions/1593714/wap-nunit-webconfigurationmanager-pin/1593749#1593749 0 Answer by Mike Two for WAP + NUnit + WebConfigurationManager Pin Mike Two 2009-10-20T10:35:24Z 2009-10-20T10:35:24Z <p>By default NUnit will look for a config file that has the same name as the dll that contain the tests. So if you have someTests.dll NUnit will want to pick up someTests.dll.config. So for standard exes the trick is to copy your App.config to match the dll name pattern. I think that also works for web apps. You would copy web.config to someTests.dll.config. But to be honest I usually don't write tests that need to get to the config so I don't know for sure.</p> http://stackoverflow.com/questions/409495/how-to-separate-data-validation-from-my-simple-domain-objects-pocos/1568426#1568426 1 Answer by Mike Two for How to separate data validation from my simple domain objects (POCOs)? Mike Two 2009-10-14T19:22:05Z 2009-10-14T19:22:05Z <p>A colleague of mine came up with an idea that worked out pretty well. We never came up with a great name for it but we called it Inspector/Judge.</p> <p>The Inspector would look at an object and tell you all of the rules it violated. The Judge would decide what to do about it. This separation let us do a couple of things. It let us put all the rules in one place (Inspector) but we could have multiple Judges and choose the Judge by the context.</p> <p>One example of the use of multiple Judges revolves around the rule that said a Customer must have an Address. This was a standard three tier app. In the UI tier the Judge would produce something that the UI could use to indicate the fields that had to be filled in. The UI Judge did not throw exceptions. In the service layer there was another Judge. If it found a Customer without an Address during Save it would throw an exception. At that point you really have to stop things from proceeding.</p> <p>We also had Judges that were more strict as the state of the objects changed. It was an insurance application and during the Quoting process a Policy was allowed to be saved in an incomplete state. But once that Policy was ready to be made Active a lot of things had to be set. So the Quoting Judge on the service side was not as strict as the Activation Judge. Yet the rules used in the Inspector were still the same so you could still tell what wasn't complete even if you decided not to do anything about it.</p> http://stackoverflow.com/questions/1563243/books-that-will-cover-tdd-ddd-and-design-patterns-in-net/1564768#1564768 2 Answer by Mike Two for Books that will cover TDD, DDD and Design Patterns in .NET Mike Two 2009-10-14T07:27:26Z 2009-10-14T07:27:26Z <p>Try <a href="http://rads.stackoverflow.com/amzn/click/0321268202" rel="nofollow">Applying Domain Driven Design and Patterns</a> By Jimmy Nillson. It covers DDD and it's patterns in .NET</p> http://stackoverflow.com/questions/1892696/hex-number-of-length-128-which-is-to-be-converted-to-binary-in-c Comment by Mike Two on hex number of length 128 which is to be converted to binary in c# Mike Two 2009-12-12T07:49:57Z 2009-12-12T07:49:57Z isn't this the same question as this <a href="http://stackoverflow.com/questions/1892547/sorry-guys-its-hex-number-of-128-length-which-is-to-be-converted-to-binary-in-c" rel="nofollow" title="sorry guys its hex number of 128 length which is to be converted to binary in c">stackoverflow.com/questions/1892547/&hellip;</a> http://stackoverflow.com/questions/1892547/sorry-guys-its-hex-number-of-128-length-which-is-to-be-converted-to-binary-in-c Comment by Mike Two on sorry guys, its hex number of 128 length which is to be converted to binary in c# Mike Two 2009-12-12T07:49:20Z 2009-12-12T07:49:20Z seems to be re-entered as <a href="http://stackoverflow.com/questions/1892696/hex-number-of-length-128-which-is-to-be-converted-to-binary-in-c" rel="nofollow" title="hex number of length 128 which is to be converted to binary in c">stackoverflow.com/questions/1892696/&hellip;</a> http://stackoverflow.com/questions/1812006/what-open-source-software-has-quality-asp-net-mvc-c-code/1812014#1812014 Comment by Mike Two on What Open Source Software has Quality ASP.NET MVC C# code Mike Two 2009-11-28T10:54:53Z 2009-11-28T10:54:53Z @Luke101. Advanced in what way? I have a few other suggestions, but I'll need a bit more detail on your requirements. Quality, speedy and reusable are a bit vague. I think NerdDinner is pretty high quality, it is speedy for what it does. Reusability is always subjective. If you gave more information about what you want to do with MVC it might help. http://stackoverflow.com/questions/1789658/datatable-into-listt-without-where-t-class-new-potential-problems Comment by Mike Two on DataTable into List<T> *without* where T : class, new() - potential problems? Mike Two 2009-11-24T12:31:15Z 2009-11-24T12:31:15Z What is <code>FillObjectFromDataRow</code> doing to be generic? Is it using reflection to map from the row to the item or does it have specialized knowledge of certain types? If the latter then can't <code>FillObjectFromDataRow</code> have specialized knowledge of how to create each type? http://stackoverflow.com/questions/1789658/datatable-into-listt-without-where-t-class-new-potential-problems/1789744#1789744 Comment by Mike Two on DataTable into List<T> *without* where T : class, new() - potential problems? Mike Two 2009-11-24T12:28:48Z 2009-11-24T12:28:48Z In your snippet I don't see where item comes from. It is used in the call to <code>FillObjectFromDataRow</code> but I don't see where item is defined. I see the cast in the next line. What am I missing? http://stackoverflow.com/questions/1717702/which-addin-is-recommended-for-visual-studio-2008-c/1717731#1717731 Comment by Mike Two on Which addin is recommended for Visual Studio 2008 (C#) ? Mike Two 2009-11-11T21:18:47Z 2009-11-11T21:18:47Z Ravi- You'll notice that my answer came in at the same time as the initial answers. Therefore they were not actually present at the time I wrote it. There was one answer that came in as I was writing and it mentioned resharper but no one had mentioned visualsvn at the time. I did not edit resharper out of mine, but I did upvote the answer that came in before mine. http://stackoverflow.com/questions/1634992/linq-to-sql-int16-gets-converted-as-int32-in-sql-command/1648433#1648433 Comment by Mike Two on Linq to SQL Int16 Gets Converted as Int32 In SQL Command Mike Two 2009-11-05T07:16:20Z 2009-11-05T07:16:20Z I've dug through the linq to sql code through reflector. It appears that at some point the id.Value gets translated to a literal, say 42, that then gets treated as an int. C# will not consider short as a possibility when dealing with a literal. It starts at int and works it's way up. I haven't been able to trace enough of the code to prove that is what it is doing but it seems that way. It also seems to do no harm. http://stackoverflow.com/questions/1667808/why-does-the-compiler-find-this-ambiguous Comment by Mike Two on Why does the compiler find this ambiguous? Mike Two 2009-11-03T15:10:52Z 2009-11-03T15:10:52Z see <a href="http://stackoverflow.com/questions/1293201/calling-constructor-overload-when-both-overload-have-same-signature" rel="nofollow" title="calling constructor overload when both overload have same signature">stackoverflow.com/questions/1293201/&hellip;</a> and Eric Lippert's answer and blog post. http://stackoverflow.com/questions/1629751/interface-classes Comment by Mike Two on interface classes Mike Two 2009-10-27T09:58:17Z 2009-10-27T09:58:17Z Why all the statics and nested classes? http://stackoverflow.com/questions/1606485/ubiquitous-language-term-for-developers-and-users Comment by Mike Two on Ubiquitous language - term for developers and users Mike Two 2009-10-26T09:22:28Z 2009-10-26T09:22:28Z Several years ago I was on a project that tried using Ubiquitous Language. It didn't work out. No Domain expert buy in. They had 19 terms for the same concept and wanted to keep that. They wanted to be at war with development. On that project we ended up coining the term &quot;UDickedWithUs Language&quot;. It's an anti-pattern that comes up once in a while when Domain Experts are afraid to share due to job security concerns. I've had great luck with Ubiquitous Language on other projects. That first one was destined to fail for corporate culture issues. http://stackoverflow.com/questions/1617518/datarow-aggregate-functions-c/1617530#1617530 Comment by Mike Two on DataRow[] Aggregate Functions C# Mike Two 2009-10-24T10:05:11Z 2009-10-24T10:05:11Z @Marc - Thanks. I fixed it. I just typed it out too fast. I should probably just remove the answer. Yours is better. http://stackoverflow.com/questions/1617130/linq-not-updating-changed-class-property/1617136#1617136 Comment by Mike Two on Linq not updating changed class property Mike Two 2009-10-24T06:47:36Z 2009-10-24T06:47:36Z @Eric J. - It is the right pattern. We use this all over our application and it works fine. http://stackoverflow.com/questions/1617130/linq-not-updating-changed-class-property/1617170#1617170 Comment by Mike Two on Linq not updating changed class property Mike Two 2009-10-24T06:42:13Z 2009-10-24T06:42:13Z @Eric J. It should. http://stackoverflow.com/questions/1596579/best-type-to-set-as-return-type-for-methods-that-return-a-collection/1596608#1596608 Comment by Mike Two on Best Type to set as return type for methods that return a collection? Mike Two 2009-10-22T20:05:01Z 2009-10-22T20:05:01Z @Steven - Yes I already understand your point. I did not say you should depend on the existence of the shortcut. I only pointed out that you said that to get the count you would have to iterate through. I pointed out that there were cases where you wouldn't. I did not say you should depend on it. We are actually in agreement on most of it. I did not say you should depend on the behavior of count, only pointed out what it was. I agree that if you wanted to guarantee fast repeatable count, which was not mentioned in the question, you should return ICollection. It is a requirement that you added. http://stackoverflow.com/questions/1606329/what-features-should-c-4-0-onwards-have-to-encourage-switching-from-java Comment by Mike Two on What features should C# 4.0 onwards have to encourage switching from Java? Mike Two 2009-10-22T10:35:11Z 2009-10-22T10:35:11Z See also <a href="http://stackoverflow.com/questions/1594917/what-features-should-java-7-onwards-have-to-encourage-switching-from-c" rel="nofollow" title="what features should java 7 onwards have to encourage switching from c">stackoverflow.com/questions/1594917/&hellip;</a>