User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T03:33:47Z http://stackoverflow.com/feeds/user/24315 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1822917/is-it-possible-to-construct-an-object-by-reading-source-code/1822953#1822953 1 Answer by neilwhitaker1 for Is it possible to construct an object by reading source code? neilwhitaker1 2009-11-30T22:44:53Z 2009-11-30T22:44:53Z <p>Is invoking the compiler an option? You could build the source files themselves and use reflection to walk the attributes, or you could create a dummy source file that you mark up with those attributes. Either way, once it's compiled, you can reflect in to access the attribute's properties.</p> http://stackoverflow.com/questions/1792754/keep-track-of-number-of-events-per-timespan/1792793#1792793 0 Answer by neilwhitaker1 for Keep track of number of events per timespan neilwhitaker1 2009-11-24T20:40:19Z 2009-11-24T20:51:54Z <p>Put time stamps in a queue. As long as the queue is full, don't let an event happen. When DateTime.Now - timeSpan > next_item_in_queue.TimeStamp, remove the item from the queue.</p> http://stackoverflow.com/questions/1050687/mimicking-assembly-resolution-of-the-msbuild-process 1 Mimicking assembly resolution of the msbuild process. neilwhitaker1 2009-06-26T19:02:20Z 2009-11-20T18:40:13Z <p>I am writing a validation tool that checks the versions of files referenced in a project. I want to use the same resolution process that MSBuild uses.</p> <p>For example, Assembly.Load(..) requires a fully-qualified assembly name. However, in the project file, we may only have something like "System.Xml". MSBuild probably uses the project's target framework version and some other heuristics to decide which version of System.Xml to load.</p> <p>How would you go about mimicking (or directly using) msbuild's assembly resolution process?</p> <p>In other words, at run-time, I want to take the string "System.Xml", along with other info found in a .csproj file and find the same file that msbuild would find.</p> http://stackoverflow.com/questions/1759178/why-am-i-using-the-knowntype-attribute-wrong/1759199#1759199 1 Answer by neilwhitaker1 for Why am I using the KnownType attribute wrong? neilwhitaker1 2009-11-18T21:26:19Z 2009-11-18T21:26:19Z <p>Have you tried putting the KnownType attribute on ResponseData instead of RequestResult?</p> http://stackoverflow.com/questions/1758042/c-function-chaining/1758209#1758209 0 Answer by neilwhitaker1 for C# Function Chaining neilwhitaker1 2009-11-18T18:50:59Z 2009-11-18T18:50:59Z <p>BTW, if you had already declared intrs, you could have done it with parentheses:</p> <pre><code>(intrs = new List&lt;int&gt;()).AddRange(new int[] { 1, 2, 3, 45 }); </code></pre> <p>However, I like the initialization syntax better.</p> http://stackoverflow.com/questions/1752823/how-do-you-get-the-name-of-a-generic-class-using-reflection/1752918#1752918 2 Answer by neilwhitaker1 for How do you get the name of a generic class using reflection? neilwhitaker1 2009-11-18T00:49:45Z 2009-11-18T00:49:45Z <p>The '1 is part of the name, because, for example,</p> <pre><code>List&lt;T&gt; and List (if I created such a class) are different classes. </code></pre> <p>'1 means that it has one type parameter. If you want to know the type of that parameter, use test.GetType().GetGenericArguments()[0];</p> http://stackoverflow.com/questions/1752786/what-data-structures-can-i-use-to-represent-a-strongly-typed-2d-matrix-of-data-in/1752829#1752829 1 Answer by neilwhitaker1 for What data structures can I use to represent a strongly-typed 2D matrix of data in .Net? neilwhitaker1 2009-11-18T00:24:58Z 2009-11-18T00:39:50Z <p>I believe you'll have to roll your own. You could store your matrix of data in one of these:</p> <pre><code>List&lt;List&lt;RoundScore&gt;&gt; </code></pre> <p>Then in Round, add a field that stores the index of that Round's scores. Likewise, in Player, add a field for that player's scores.</p> <p>If the rows are the scores for a round, then returning that list is trivial. To return the list of scores for a player, you could create a class that implements IList, which knows how to access the scores by index. By doing this, you don't have to copy the scores into a new list each time they are requested.</p> <p>For example:</p> <pre><code>List&lt;Player&gt; Players; List&lt;Round&gt; Rounds; List&lt;List&lt;RoundScore&gt;&gt; Scores; List&lt;RoundScore&gt; GetRoundScores(Round round) { return Scores[round.Index]; } IList&lt;RoundScore&gt; GetRoundScores(Player player) { return new PlayerScoreList(Scores, player.Index); // or better yet, cache this } public class PlayerScoreList : IList&lt;RoundScore&gt; { private List&lt;List&lt;RoundScore&gt;&gt; _scores; private int _playerIndex; public RoundScore this[int index] { get { return _scores[_playerIndex][index]; } set { _scores[_playerIndex][index] = value; } } public PlayerScoreList(List&lt;List&lt;RoundScore&gt;&gt; scores, int playerIndex) { _scores = scores; _playerIndex = playerIndex; } public void Add(RoundScore item) { throw new NotSupportedException(); } public void Clear() { throw new NotSupportedException(); } public bool Contains(RoundScore item) { for (int i = 0; i &lt; Count; i++) { if (this[i].Equals(item)) { return true; } } return false; } public int Count { get { return _scores[0].Count; } } public IEnumerator&lt;RoundScore&gt; GetEnumerator() { for (int i = 0; i &lt; Count; i++) { yield return this[i]; } } // ... more methods } </code></pre> http://stackoverflow.com/questions/1752755/validate-date-textbox/1752799#1752799 2 Answer by neilwhitaker1 for Validate date textbox neilwhitaker1 2009-11-18T00:17:06Z 2009-11-18T00:17:06Z <p>The DataTime.TryParseExact(..) function does allow you to parse a date using a specific date format (for example, "mm/dd/yyyy"). However, if you want to be flexible on the number of digits in the year, then a regex might be a better choice.</p> http://stackoverflow.com/questions/1731620/is-there-a-way-to-have-all-radion-buttons-be-unchecked/1731667#1731667 2 Answer by neilwhitaker1 for Is there a way to have all radion buttons be unchecked neilwhitaker1 2009-11-13T20:23:56Z 2009-11-13T20:23:56Z <p>Would it work to add a radio button with a label like "None"?</p> http://stackoverflow.com/questions/101265/why-is-there-not-a-foreach-extension-method-on-the-ienumerable-interface/1716623#1716623 0 Answer by neilwhitaker1 for Why is there not a ForEach extension method on the IEnumerable interface? neilwhitaker1 2009-11-11T17:04:54Z 2009-11-11T17:04:54Z <p>In 3.5, all the extension methods added to IEnumerable are there for LINQ support (notice that they are defined in the System.Linq.Enumerable class). In this post, I explain why foreach doesn't belong in LINQ: <a href="http://stackoverflow.com/questions/317874/existing-linq-extension-method-similar-to-parallel-for/318493#318493">http://stackoverflow.com/questions/317874/existing-linq-extension-method-similar-to-parallel-for/318493#318493</a></p> http://stackoverflow.com/questions/1709308/does-the-scrum-master-have-to-answer-the-3-standup-questions-as-well/1709396#1709396 3 Answer by neilwhitaker1 for Does the scrum master have to answer the 3 standup questions as well? neilwhitaker1 2009-11-10T16:45:53Z 2009-11-10T22:59:54Z <p>Do what makes sense. The process is there to give you structure, but no process is a Golden Hammer.</p> http://stackoverflow.com/questions/1580509/partial-class-constructors/1580526#1580526 2 Answer by neilwhitaker1 for Partial Class Constructors neilwhitaker1 2009-10-16T21:27:15Z 2009-10-16T21:27:15Z <p>Search for "partial methods". This will do exactly what you want.</p> <p>For example:</p> <pre><code>public partial class Test { public Test() { //do stuff DoExtraStuff(); } partial void DoExtraStuff(); } public partial class Test // in some other file { partial void DoExtraStuff() { // do more stuff } } </code></pre> http://stackoverflow.com/questions/267168/treat-all-warnings-as-errors-except-in-visual-studio 6 "Treat all warnings as errors except..." in Visual Studio neilwhitaker1 2008-11-05T23:41:50Z 2009-09-30T16:45:46Z <p>In Visual Studio, I can select the "Treat warnings as errors" option to prevent my code from compiling if there are any warnings. Our team uses this option, but there are two warnings we would like to keep as warnings. </p> <p>There is an option to suppress warnings, but we DO want them to show up as warnings, so that won't work.</p> <p>It appears that the only way to get the behavior we want is to enter a list of every C# warning number into the "Specific warnings" text box, except for the two we want treated as warnings.</p> <p>I am checking a file in to source control to keep track of which ones we are treating as errors</p> <p><hr /></p> <p>C# 3.5 warning numbers to treat as errors:</p> <pre><code>183,184,197,420,465,602,626,657,658,672,684,688,809,824,1058,1060,1200, 1201,1202,1203,1522,1570,1574,1580,1581,1584,1589,1590,1592,1598,1607, 1616,1633,1634,1635,1645,1658,1682,1683,1684,1685,1687,1690,1691,1692, 1694,1695,1696,1697,1699,1707,1709,1720,1723,1911,1956,1957,2002,2014, 2023,2029,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011, 3012,3013,3014,3015,3016,3017,3018,3022,3023,3026,3027,5000,108,114,162, 164,251,252,253,278,279,280,435,436,437,440,444,458,464,467,469,472,618, 652,728,1571,1572,1587,1668,1698,1710,1711,1927,3019,3021,67,105,168,169, 219,282,414,419,642,659,660,661,665,675,693,1700,1717,1718,28,78,109,402, 422,429,628,649,1573,1591,1610,1712,3024 </code></pre> <p>C# 3.5 warning numbers that remain as warnings:</p> <pre><code>612 - X is obsolete 1030 - #warning This is a warning 1701, 1702 - Warnings that are suppressed by the C# compiler by default and shouldn't show up at all. </code></pre> <p><hr /></p> <p>The biggest disadvantage to this approach is that a few warnings do not have numbers, so they can't be referenced explicitly. For example, "Could not resolve this reference. Could not locate assembly 'Data....'"</p> <p>Does anyone know of a better way to do this?</p> <p><hr /></p> <p>Clarifying for those who don't see immediately why this is useful. Think about how most warnings work. They tell you something is a little off in the code you just wrote. It takes about 10 seconds to fix them, and that keeps the code base cleaner.</p> <p>The "Obsolete" warning is very different from this. Sometimes fixing it means just consuming a new method signature. But if an entire class is obsolete, and you have usage of it scattered through hundreds of thousands of lines of code, it could take weeks or more to fix. You don't want the build to be broken for that long, but you definitely DO want to see a warning about it. This isn't just a hypothetical case--this has happened to us.</p> <p>Literal "#warning" warnings are also unique. I often <em>want</em> to check it in, but I don't want to break the build.</p> http://stackoverflow.com/questions/144833/most-useful-attributes-in-c/971286#971286 3 Answer by neilwhitaker1 for Most Useful Attributes in C# neilwhitaker1 2009-06-09T16:57:25Z 2009-09-29T17:57:48Z <p>It's not well-named, not well-supported in the framework, and shouldn't require a parameter, but this attribute is a useful marker for immutable classes:</p> <p>[ImmutableObject(true)]</p> http://stackoverflow.com/questions/1290750/how-do-i-unit-test-code-that-uses-a-fluent-interface/1290930#1290930 1 Answer by neilwhitaker1 for How do I unit test code that uses a Fluent interface? neilwhitaker1 2009-08-17T22:50:22Z 2009-08-17T22:50:22Z <p>Can you mock your Repositories? While some will advocate a more pure approach where you must isolate one method of one class, it would be a decent way to test how FindComputers and the fluent interface work together. And it may be simpler, depending on what the Repository access layer looks like.</p> http://stackoverflow.com/questions/1034900/near-duplicate-image-detection/1066585#1066585 3 Answer by neilwhitaker1 for Near-Duplicate Image Detection neilwhitaker1 2009-06-30T23:23:09Z 2009-06-30T23:23:09Z <p>A picture has many features, so unless you narrow yourself to one, like average brightness, you are dealing with an n-dimensional problem space.</p> <p>If I asked you to assign a single integer to the cities of the world, so I could tell which ones are close, the results wouldn't be great. You might, for example, choose time zone as your single integer and get good results with certain cities. However, a city near the north pole and another city near the south pole can also be in the same time zone, even though they are at opposite ends of the planet. If I let you use two integers, you could get very good results with latitude and longitude. The problem is the same for image similarity.</p> http://stackoverflow.com/questions/269578/get-a-generic-method-without-using-getmethods/373396#373396 1 Answer by neilwhitaker1 for Get a generic method without using GetMethods neilwhitaker1 2008-12-17T01:26:36Z 2009-06-26T20:37:01Z <p>Solved (by hacking LINQ)!</p> <p>I saw your question while researching the same problem. After finding no good solution, I had the idea to look at the LINQ expression tree. Here's what I came up with:</p> <pre><code> public static MethodInfo GetOrderByMethod&lt;TElement, TSortKey&gt;() { Func&lt;TElement, TSortKey&gt; fakeKeySelector = element =&gt; default(TSortKey); Expression&lt;Func&lt;IEnumerable&lt;TElement&gt;, IOrderedEnumerable&lt;TElement&gt;&gt;&gt; lamda = list =&gt; list.OrderBy(fakeKeySelector); return (lamda.Body as MethodCallExpression).Method; } static void Main(string[] args) { List&lt;int&gt; ints = new List&lt;int&gt;() { 9, 10, 3 }; MethodInfo mi = GetOrderByMethod&lt;int, string&gt;(); Func&lt;int,string&gt; keySelector = i =&gt; i.ToString(); IEnumerable&lt;int&gt; sortedList = mi.Invoke(null, new object[] { ints, keySelector }) as IEnumerable&lt;int&gt;; foreach (int i in sortedList) { Console.WriteLine(i); } } </code></pre> <p>output: 10 3 9</p> <p>EDIT: Here is how to get the method if you don't know the type at compile-time:</p> <pre><code> public static MethodInfo GetOrderByMethod(Type elementType, Type sortKeyType) { MethodInfo mi = typeof(Program).GetMethod("GetOrderByMethod", Type.EmptyTypes); var getOrderByMethod = mi.MakeGenericMethod(new Type[] { elementType, sortKeyType }); return getOrderByMethod.Invoke(null, new object[] { }) as MethodInfo; } </code></pre> <p>Be sure to replace typeof(Program) with typeof(WhateverClassYouDeclareTheseMethodsIn).</p> http://stackoverflow.com/questions/263585/immutable-object-pattern-in-c-what-do-you-think/1034956#1034956 1 Answer by neilwhitaker1 for Immutable object pattern in C# - what do you think? neilwhitaker1 2009-06-23T20:23:35Z 2009-06-23T20:23:35Z <p>Two other options for your particular problem that haven't been discussed: </p> <ol> <li><p>Build your own deserializer, one that can call a private property setter. While the effort in building the deserializer at the beginning will be much more, it makes things cleaner. The compiler will keep you from even attempting to call the setters and the code in your classes will be easier to read.</p></li> <li><p>Put a constructor in each class that takes an XElement (or some other flavor of XML object model) and populates itself from it. Obviously as the number of classes increases, this quickly becomes less desirable as a solution.</p></li> </ol> http://stackoverflow.com/questions/687434/programatically-checking-files-into-tfs-getting-more-than-expected/917231#917231 0 Answer by neilwhitaker1 for Programatically checking files into TFS getting more than expected... neilwhitaker1 2009-05-27T18:14:33Z 2009-05-27T18:22:08Z <p>Here is another way to refresh you workspace cache:</p> <p>tf workspaces /s:<a href="http://SomeTFSServer:8080/" rel="nofollow">http://SomeTFSServer:8080/</a></p> <p>Also, Workspace has a method called UpdateWorkspaceInfoCache(..) that seems to do the same thing. I haven't tested this, though.</p> http://stackoverflow.com/questions/481909/how-do-i-find-out-if-a-class-is-immutable-in-c/481965#481965 1 Answer by neilwhitaker1 for How do I find out if a class is immutable in C#? neilwhitaker1 2009-01-27T00:43:12Z 2009-03-23T21:06:45Z <p>Part of the problem is that "immutable" can have multiple meanings. Take, for example, ReadOnlyCollection&lt;T&gt;.</p> <p>We tend to consider it to be immutable. But what if it's a ReadOnlyCollection&lt;SomethingChangeable&gt;? Also, since it's really just a wrapper around an IList I pass in to the constructor, what if I change the original IList?</p> <p>A good approach might be to create an attribute with a name like ReadOnlyAttribute and mark classes you consider to be read-only with it. For classes you don't control, you can also maintain a list of known types that you consider to be immutable.</p> <p>EDIT: For some good examples of different types of immutability, read this series of postings by Eric Lippert: <a href="http://blogs.msdn.com/ericlippert/archive/2007/11/13/immutability-in-c-part-one-kinds-of-immutability.aspx" rel="nofollow">http://blogs.msdn.com/ericlippert/archive/2007/11/13/immutability-in-c-part-one-kinds-of-immutability.aspx</a></p> http://stackoverflow.com/questions/159296/how-can-i-prevent-a-base-constructor-from-being-called-by-an-inheritor-in-c/160027#160027 4 Answer by neilwhitaker1 for How can I prevent a base constructor from being called by an inheritor in C#? neilwhitaker1 2008-10-01T22:20:24Z 2008-12-17T17:06:37Z <p>There is a way to create an object without calling <em>any</em> constructors.</p> <p>Before you proceed, be very sure you want to do it this way. 99% of the time this is the wrong solution.</p> <p>This is how you do it:</p> <p>FormatterServices.GetUninitializedObject(typeof(MyClass));</p> <p>Call it in place of the object's constructor. It will create and return you an instance without calling any constructors or field initializers.</p> <p>When you deserialize an object in WCF, it uses this method to create the object. When this happens, constructors and even field initializers are not run.</p> http://stackoverflow.com/questions/135020/advantages-to-using-private-static-methods/272841#272841 2 Answer by neilwhitaker1 for Advantages to Using Private Static Methods neilwhitaker1 2008-11-07T17:26:05Z 2008-12-17T05:55:19Z <p>When I'm writing a class, most methods fall into two categories:</p> <ul> <li>Methods that change the current instance's state.</li> <li>Helper methods that don't change the current object's state, but help me compute values I need elsewhere.</li> </ul> <p>Static methods are useful, because just by looking at its signature, you know that the calling it doesn't use or modify the current instance's state.</p> <p>Take this example:</p> <pre>public class Library { private static Book findBook(List&lt;Book&gt; books, string title) { // code goes here } }</pre> <p>If an instance of library's state ever gets screwed up, and I'm trying to figure out why, I can rule out findBook as the culprit, just from its signature.</p> <p>I try to communicate as much as I can with a method or function's signature, and this is an excellent way to do that.</p> http://stackoverflow.com/questions/372601/c-datetime-what-date-to-use-when-im-using-just-the-time/372819#372819 1 Answer by neilwhitaker1 for C# DateTime: What "date" to use when i'm using just the "time"? neilwhitaker1 2008-12-16T21:32:17Z 2008-12-16T21:32:17Z <p>To display a TimeSpan formatted with local culture, simply add it to a date like DateTime.Today. Something like this:</p> <p>(DateTime.Today + timeSpan).ToString();</p> <p>Since your value really doesn't represent a date, you're better off storing it as a TimeSpan until the time comes to display it.</p> http://stackoverflow.com/questions/370141/c-in-comparison-to-c-what-is-your-strongest-pain/370187#370187 2 Answer by neilwhitaker1 for C# in comparison to C++: what is your strongest pain? neilwhitaker1 2008-12-16T00:35:49Z 2008-12-16T00:35:49Z <p>You make some good points. A lot of what is "missing" was left out to keep the language simpler and avoid common pitfalls. Here are some thoughts on your items.</p> <ol> <li>Either: a) use a class or b) build a struct that doesn't need to be initialized using properties with lazy instantiation where needed. Search other SO questions to see why this was a good idea. As a quick example: private myStruct[100000000000000]; How long would that take to initialize?</li> <li>All objects inherit an Equals() method, but if you want to require a class to implement Equals, you might have your interface inherit from IEquatable&lt;T&gt;. You won't be using the == operator, but you can get the same behavior.</li> <li>Build immutable objects (i.e. objects with read-only properties). I agree this is limiting, because it's not always possible to make the objects within your objects immutable.</li> <li>Agreed. This would be very nice. Before releasing generics, MS at least added "where T : new()" so we could create a new instance of T. It would be nice if they added more of these. At least you can add methods to replace all these operators, which will make your code more friendly to other CLR languages anyway.</li> <li>Can you explain this one a little more?</li> <li>Interfaces are widely regarded as the answer to multiple inheritance. Granted, a standard mix-in framework would be nice as well. It doesn't sound like you miss multiple inheritance <i>that</i> much.</li> </ol> http://stackoverflow.com/questions/351272/best-practices-when-not-to-use-partial-classes/351395#351395 1 Answer by neilwhitaker1 for Best Practices: When not/to use partial classes. neilwhitaker1 2008-12-09T00:10:51Z 2008-12-09T00:10:51Z <p>I've actually done the same thing. As has been stated, there is a slight readability hit on deciphering the partial classes.</p> <p>Decoupling is the main reason I <i>like</i> this solution. A private inner class is far less coupled to everything else, because nothing else can see it or use it (although they may be talking about the potential for it to access the parent class's private data, which would usually be a bad idea).</p> http://stackoverflow.com/questions/341957/how-do-i-enforce-using-a-factory-on-a-struct-in-c/341988#341988 2 Answer by neilwhitaker1 for How do I enforce using a factory on a struct in C# neilwhitaker1 2008-12-04T20:40:44Z 2008-12-04T20:40:44Z <p>Anyone can create a struct at any time without calling a constructor, as long as they have access to the struct. Think about it this way:</p> <p>If you create an array of objects with 1000 elements, they all get initialized to null, so no constructors are called.</p> <p>With structs, there is no such thing as null. If you create an array with 1000 DateTime objects, they are all initialized to zero, which equals DateTime.Min. The designers of the runtime chose to make it so you could create an array of structs without calling the constructor N times--a performance hit many people wouldn't realize was there.</p> <p>Your factory idea is a good one, though. Would it meet your needs to create an interface and expose that, but make the struct private or internal? That's about as close as you'll get.</p> http://stackoverflow.com/questions/317874/existing-linq-extension-method-similar-to-parallel-for/318493#318493 5 Answer by neilwhitaker1 for Existing LINQ extension method similar to Parallel.For? neilwhitaker1 2008-11-25T18:59:50Z 2008-11-26T17:27:15Z <p>Shedding a little more light on why:</p> <p>LINQ is functional in nature. It is used to query data and return results. A LINQ query shouldn't be altering the state of the application (with some exceptions like caching). Because foreach doesn't return any results, it doesn't have many uses that don't involve altering the state of something besides what you are passing in to it. And if you need a Foreach() extension method, it <i>is</i> easy to roll your own.</p> <p>If, on the other hand, what you want is to take input and call a function on each item that returns a result, LINQ provides a way through its select method.</p> <p>For example, the following code calls a function delegate on every item in a list, returning true if that item is positive:</p> <pre><code> static void Main(string[] args) { IEnumerable&lt;int&gt; list = new List&lt;int&gt;() { -5, 3, -2, 1, 2, -7 }; IEnumerable&lt;bool&gt; isPositiveList = list.Select&lt;int, bool&gt;(i =&gt; i &gt; 0); foreach (bool isPositive in isPositiveList) { Console.WriteLine(isPositive); } Console.ReadKey(); } </code></pre> http://stackoverflow.com/questions/321203/how-do-i-debug-il-code-generated-at-runtime-using-reflection-emit/321491#321491 0 Answer by neilwhitaker1 for How do I debug IL code generated at runtime using Reflection.Emit neilwhitaker1 2008-11-26T17:25:52Z 2008-11-26T17:25:52Z <p>This may not help you at the debugging end, but RunSharp is a nice tool for generating IL that helps you avoid common pitfalls. It makes Writing IL feel a lot more like writing C#.</p> <p>Here is an overview with examples: <a href="http://www.codeproject.com/KB/dotnet/runsharp.aspx" rel="nofollow">http://www.codeproject.com/KB/dotnet/runsharp.aspx</a></p> http://stackoverflow.com/questions/315231/using-reflection-to-set-a-property-with-a-type-of-listcustomclass/315256#315256 2 Answer by neilwhitaker1 for Using Reflection to set a Property with a type of List<CustomClass> neilwhitaker1 2008-11-24T19:57:48Z 2008-11-24T19:57:48Z <p>Here's an example of taking the List&lt;&gt; type and turning it into List&lt;string&gt;.</p> <p>var list = typeof(List&lt;&gt;).MakeGenericType(typeof(string));</p> http://stackoverflow.com/questions/234181/getting-i-th-value-from-a-sortedlist-or-sorteddictionary/234200#234200 1 Answer by neilwhitaker1 for Getting i-th value from a SortedList or SortedDictionary neilwhitaker1 2008-10-24T16:14:42Z 2008-10-24T16:14:42Z <p>Try something like this: </p> <p>list.Values[list.Count / 2]; </p> <p>Note that a true median would average the two numbers in the middle if Count is even.</p> http://stackoverflow.com/questions/1771750/optimal-way-for-partitioning-a-cell-based-shape-into-a-minimal-amount-of-rectangl Comment by on Optimal way for partitioning a cell based shape into a minimal amount of rectangles 2009-11-20T23:17:41Z 2009-11-20T23:17:41Z Can the rectangles overlap each other? http://stackoverflow.com/questions/1759154/c-string-parsing-to-variable-types/1759192#1759192 Comment by on C# string Parsing to variable types 2009-11-18T21:28:55Z 2009-11-18T21:28:55Z +1 for an interesting solution. http://stackoverflow.com/questions/1752786/what-data-structures-can-i-use-to-represent-a-strongly-typed-2d-matrix-of-data-in/1752829#1752829 Comment by on What data structures can I use to represent a strongly-typed 2D matrix of data in .Net? 2009-11-18T17:28:56Z 2009-11-18T17:28:56Z Yes. You could easily implement an IDictionary the same way as the IList. http://stackoverflow.com/questions/1752755/validate-date-textbox/1752799#1752799 Comment by on Validate date textbox 2009-11-18T01:03:31Z 2009-11-18T01:03:31Z Excellent. I had forgotten about that overload. I'm glad that worked for you. http://stackoverflow.com/questions/1723855/ienumerable-question-best-performance/1723901#1723901 Comment by on IEnumerable question: Best performance? 2009-11-12T17:39:03Z 2009-11-12T17:39:03Z Unless something has changed very recently, for is a little faster than foreach, because you are not creating a new enumerator object and calling its methods as you go. The difference is small enough not to matter unless your code is an extremely critical place. http://stackoverflow.com/questions/1723855/ienumerable-question-best-performance/1723899#1723899 Comment by on IEnumerable question: Best performance? 2009-11-12T17:36:01Z 2009-11-12T17:36:01Z Performance-wise, the foreach with an if-clause will be fastest. Using .Where will be slightly slower, and using .FindAll will be <i>much</i> slower. http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid/380825#380825 Comment by on Common programming mistakes for .NET developers to avoid? 2009-11-11T19:00:51Z 2009-11-11T19:00:51Z I agree that structs should be immutable. Structs do have one unique feature that classes cannot offer: they are never null. They also have some small perks, like getting value equality without writing any code and better performance if they are very small. But I agree that a class is better in most cases. http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid/381074#381074 Comment by on Common programming mistakes for .NET developers to avoid? 2009-11-11T18:04:10Z 2009-11-11T18:04:10Z Sometimes discarding the result of a function call makes sense. For example, List.Remove(..) and StringBuilder.Append(). Very often, we don't care about these results. What we need is a way to distinguish between functions where it does and does not make sense to ignore the result. If we can't change the syntax of C#, we could add an attribute to the function. Also, if the compiler could see that a class was immutable (e.g. with another attribute), it could issue a warning when we ignore results, although there may be false positives, like WriteValuesToConsole(). http://stackoverflow.com/questions/267168/treat-all-warnings-as-errors-except-in-visual-studio/468221#468221 Comment by on "Treat all warnings as errors except..." in Visual Studio 2009-10-06T22:53:28Z 2009-10-06T22:53:28Z I use this also, although it doesn't solve the problems mentioned in my description. I want certain warnings treated as warnings, not hidden. http://stackoverflow.com/questions/267168/treat-all-warnings-as-errors-except-in-visual-studio/278706#278706 Comment by on "Treat all warnings as errors except..." in Visual Studio 2009-10-06T22:52:29Z 2009-10-06T22:52:29Z Using the selected answer, it's easy to add to the list of warnings treated as warnings. That works much better than either of your proposed solutions. Warnings clearly are not errors, but treating most warnings as errors means code will never be checked in with those warnings. http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/180931#180931 Comment by on What non-programming books should programmers read? 2009-09-30T17:39:44Z 2009-09-30T17:39:44Z Take the book's advice how you want to, but realize that the &quot;Rich Dad&quot; character may be fictional. Google this: Kiyosaki smart money http://stackoverflow.com/questions/1213862/why-is-there-not-a-fieldof-or-methodof-operator-in-c/1226154#1226154 Comment by on Why is there not a `fieldof` or `methodof` operator in C#? 2009-08-13T17:26:11Z 2009-08-13T17:26:11Z Nicely done. I did something similar here: <a href="http://stackoverflow.com/questions/269578/get-a-generic-method-without-using-getmethods/373396#373396" rel="nofollow" title="get a generic method without using getmethods">stackoverflow.com/questions/269578/&hellip;</a> but I like yours as a solid general solution: http://stackoverflow.com/questions/1165967/opaque-dictionary-key-pattern-in-c/1197145#1197145 Comment by on Opaque dictionary key pattern in C# 2009-07-30T22:27:16Z 2009-07-30T22:27:16Z Oddly enough, KeyValuePair doesn't override Equals and GetHashCode. http://stackoverflow.com/questions/1050687/mimicking-assembly-resolution-of-the-msbuild-process/1050738#1050738 Comment by on Mimicking assembly resolution of the msbuild process. 2009-07-01T15:54:01Z 2009-07-01T15:54:01Z A little more detail: I have a set of validation routines that I run against csproj files. I want to add one that checks the versions of referenced assemblies. For reasons having to do with keeping our options open (which I don't necessarily agree with), it was decided that even though our projects will target the .NET framework version 3.5, none of our assembly references should be to files above version 3.3 (yet). http://stackoverflow.com/questions/1050687/mimicking-assembly-resolution-of-the-msbuild-process/1050738#1050738 Comment by on Mimicking assembly resolution of the msbuild process. 2009-07-01T15:48:09Z 2009-07-01T15:48:09Z Yes. I want to parse a .csproj file, locate the assembly files, and get their versions. I am only concerned with system assemblies right now, but others might be useful in the future.