User Lucas - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T00:30:26Z http://stackoverflow.com/feeds/user/24231 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1801134/upnp-library-for-net/1870113#1870113 1 Answer by Lucas for UPnP Library for .Net Lucas 2009-12-08T21:54:08Z 2009-12-08T21:54:08Z <p>About the Intel UPnP SDK, it was recently updated and renamed to <a href="http://opentools.homeip.net/dev-tools-for-upnp" rel="nofollow">Developer Tools For UPnP</a>. Most notable changes are it now includes source code for all the tools and the code generator, the source is under the Apache 2.0 license, and IPv6 support was added in several places.</p> <p>See <a href="http://software.intel.com/en-us/blogs/2009/12/01/developer-tools-for-upnp-technologies/" rel="nofollow">blog post 1</a> and <a href="http://software.intel.com/en-us/blogs/2009/12/02/developer-tools-for-upnp-technologies-2/" rel="nofollow">blog post 2</a> by Intel's <a href="http://software.intel.com/en-us/blogs/author/ylian-saint-hilaire/" rel="nofollow">Ylian Saint-hilaire</a>.</p> http://stackoverflow.com/questions/1261319/drag-and-drop-files-into-vs-2008-in-win-7/1809110#1809110 0 Answer by Lucas for Drag and drop files into VS 2008 in Win 7 Lucas 2009-11-27T14:31:17Z 2009-11-27T14:31:17Z <p>This is not a bug, but a security feature. To expand on <a href="http://stackoverflow.com/questions/1261319/drag-and-drop-files-into-vs-2008-in-win-7/1808775#1808775">Juan Manuel's answer</a>:</p> <p>This is not a problem specific to VS2008 or Windows 7. It happens between <em>any</em> applications with different integrity levels. In Vista or higher (Server 2008, Windows 7), this can be caused by UAC and having some apps elevated and others not. The application with a lower integrity level cannot send messages to the application with a higher integrity level. In your case, Windows Explorer, running as a non-priviledged user, cannot send drag-and-drop messages to Visual Studio, which I assume is running elevated (as admin). The same would happen if you tried to drag-and-drop files into an elevated Notepad, for example.</p> <p>Some workarounds are:</p> <ol> <li>disable UIPI so lower integrity apps can send messages to higher integrity apps (security risk)</li> <li>disable UAC so all your apps (including Windows Explorer) run elevated (bigger security risk)</li> <li>run an elevated Windows Explorer (risky? and seems like a lot of work just to avoid File -> Open)</li> <li>use a non-elevated Visual Studio (least security risk, but doesn't support some scenarios, such as debugging ASP.NET apps in IIS, iirc)</li> </ol> http://stackoverflow.com/questions/1655787/can-you-pass-an-expanded-array-to-a-function-in-c-like-in-ruby/1656434#1656434 1 Answer by Lucas for Can you pass an 'expanded' array to a function in C# like in ruby? Lucas 2009-11-01T04:54:32Z 2009-11-01T04:54:32Z <p>No, you can't have the array "auto-expand" when passed as an argument to a C# method. One way of simulating this is writing method overloads:</p> <pre><code>MyMethod(int a, int b) { /* ... */ } MyMethod(int[] c) { // check array length? MyMethod(c[0], c[1]); } AnotherMethod() { int[] someArray = new[] {1,2}; MyMethod(someArray); // valid MyMethod(1,2); // valid } </code></pre> <p>But as a few others have already mentioned, it is simpler (and somewhat the reverse) to use the <code>params</code> keyword. In my example (and yours), you always end up having separate <code>a</code> and <code>b</code>. With <code>params</code> you always have an array to deal with.</p> http://stackoverflow.com/questions/1605382/get-birthday-reminder-linq-query-ignoring-year/1652036#1652036 0 Answer by Lucas for Get Birthday reminder Linq Query ignoring year. Lucas 2009-10-30T20:10:20Z 2009-10-30T20:10:20Z <p>Here's one way to do it. I don't really like the way it computer "this year's" birthday first and then correct it if it already passed, but I couldn't think of a better way in short time.</p> <pre><code>from p in Persons let thisYearsBirthday = p.Birthdate.AddYears(today.Year - p.Birthdate.Year) // OR this way, although the SQL it produces it a little less simple // let thisYearsBirthday = new DateTime(today.Year, p.Birthdate.Month, p.Birthdate.Day) let nextBirthday = (thisYearsBirthday &gt;= today) ? thisYearsBirthday : thisYearsBirthday.AddYears(1) where nextBirthday &gt;= today &amp;&amp; nextBirthday &lt;= today.AddDays(20) select new { /* ... */ }; </code></pre> http://stackoverflow.com/questions/1620472/linq-for-javascript-json-arrays-dom/1627593#1627593 0 Answer by Lucas for LINQ for Javascript (JSON,Arrays, DOM)? Lucas 2009-10-26T22:03:37Z 2009-10-26T22:03:37Z <p>JavaScript libraries such as <a href="http://jquery.com" rel="nofollow">jQuery</a> have methods that work on enumerables and provide filtering, projecting, etc like LINQ does. For example, the <a href="http://docs.jquery.com/Utilities/jQuery.grep" rel="nofollow">jQuery.grep()</a> method works just like LINQ's Where() by filtering items according to the given (anonymous) function and <a href="http://docs.jquery.com/Utilities/jQuery.map" rel="nofollow">jQuery.map()</a> projects items like LINQ's Select().</p> http://stackoverflow.com/questions/1615687/extension-method-for-idictionaryt-k-the-type-arguments-for-method-cannot-be/1616221#1616221 3 Answer by Lucas for Extension method for IDictionary<t, k> : The type arguments for method cannot be inferred from the usage Lucas 2009-10-23T22:16:16Z 2009-10-23T22:16:16Z <p>Can't this be done simply with this?</p> <pre><code>dictionary[key] = value; </code></pre> <p>It adds the key/value pair if the key doesn't exist, or updates the value if it does. See <a href="http://msdn.microsoft.com/en-us/library/9tee9ht2.aspx" rel="nofollow"><code>Dictionary&lt;TKey,TValue&gt;.Item</code></a>.</p> http://stackoverflow.com/questions/1615817/should-i-use-iso-3166-country-codes-us-or-culture-codes-en-us/1616074#1616074 0 Answer by Lucas for Should i use ISO 3166 country codes (US) or culture codes (en-US) ? Lucas 2009-10-23T21:44:11Z 2009-10-23T21:44:11Z <p>As a few have pointed out, one indicates only the country (US), while the other indicates both language and country (en-US). I just wanted to add that the whole point of having language/country is because this relationship is not one-to-one. You can have the same language spoken in different countries (pt-BR vs pt-PT), and you can have several languages spoken in the same country (fr-CA and en-CA).</p> <p>If all you need to track is the user's country, by all means, use the ISO codes. If you need to track cultural and regional settings, then I'd use the full culture code.</p> http://stackoverflow.com/questions/1615845/c-video-input-routines/1615957#1615957 0 Answer by Lucas for C# video input routines Lucas 2009-10-23T21:20:55Z 2009-10-23T21:20:55Z <p>You might want to look at <a href="http://stackoverflow.com/questions/833724/c-directshow-net-simple-webcam-access">this question about web cams</a> and <a href="http://directshownet.sourceforge.net/" rel="nofollow">DirectShowNet</a>, which is a managed wrapper for the DirectShow component in DirectX.</p> http://stackoverflow.com/questions/1613214/recommended-post-sp1-visual-studio-2008-hotfixes/1613560#1613560 1 Answer by Lucas for Recommended Post-SP1 Visual Studio 2008 Hotfixes Lucas 2009-10-23T13:46:21Z 2009-10-23T13:46:21Z <p>All the VS2008 hotfixes are posted in the <a href="http://code.msdn.microsoft.com/" rel="nofollow">MSDN Code Gallery</a>. You can <a href="http://code.msdn.microsoft.com/Project/ProjectDirectory.aspx?TagName=Visual%20Studio%202008%2cHotfix" rel="nofollow">search for tags "Visual Studio 2008" and "Hotfixes"</a>. You should only install the ones for problems you are actually having. Read through them and decide which ones you need. I would sort them by release date and install from older ones first. Also notice that some are included in other updates, such are the WPF designer hotfix included with the Silverlight tools.</p> http://stackoverflow.com/questions/864130/c-windows-forms-best-min-fit-window-to-contents/1533220#1533220 0 Answer by Lucas for C#, Windows Forms, Best/min fit window to contents Lucas 2009-10-07T17:56:47Z 2009-10-07T18:03:38Z <p>Off the top of my head (read: I haven't tested this), I would think you can iterate through all the child controls when the form loads and determine it's minimum size. You can then set the form to this size and set it's <code>MinimumSize</code> property so it can never be resized to anything smaller.</p> <p>Something like this, using some LINQ:</p> <pre><code>OnLoad() { int right = this.Controls.Cast&lt;Control&gt;().Max(c =&gt; c.Right); int bottom = this.Controls.Cast&lt;Control&gt;().Max(c =&gt; c.Bottom); // leave a little padding, add maybe 10px or 10%? int minWidth = right + 10; int minHeight = bottom + 10; this.Size = new Size(minWidth, minHeight); this.MinimumSize = new Size(minWidth, minHeight); } </code></pre> <p>About the WinForms font, apparently it's a bug from 1.0 that has been carried over for compatibility's sake. (see <a href="http://stackoverflow.com/questions/297701/default-font-for-windows-forms-application">here</a> and <a href="http://weblogs.asp.net/KDente/archive/2005/03/13/394499.aspx" rel="nofollow">here</a>.) You can work around it by setting <code>this.Font = SystemFonts.DialogFont</code> when the form loads. This however doesn't show up in design mode. To work around this, set the font in a BaseForm and derive all your forms from it.</p> <p>Update: I see how this can be a problem if you have right or bottom-anchored controls. It will use they current position and size and not compute a minimum for size where they won't squish into other controls or become too small. Maybe you can set their anchors programatically <em>after</em> you have resized the form.</p> http://stackoverflow.com/questions/334532/render-html-as-an-image/1521307#1521307 0 Answer by Lucas for Render HTML as an Image Lucas 2009-10-05T17:19:10Z 2009-10-05T17:19:10Z <p>I haven't tried to myself, but you should be able to render HTML into an image by using the WebBrowser control and the DrawToBitmap() method inherited from the base Control class.</p> <p>UPDATE: I tried this myself and there are some caveats. The WebBrowser control doesn't seem to render the web page until the control is show, so the WebBrowser needs to be in a Form and the Form must be shown for the HTML to be rendered and the DocumentCompleted event to be raised.</p> http://stackoverflow.com/questions/1168955/reposity-pattern-using-linq/1342499#1342499 1 Answer by Lucas for Reposity pattern using linq Lucas 2009-08-27T17:18:56Z 2009-08-27T17:18:56Z <p>Ideally, you would create each class only once and the database differences should be taken care of by the ORM (this is how NHibernate and Subsonic work).</p> <p>If you really need different classes for each database, then yes, <strong>you can have classes with the same name as long as they are in different namespaces</strong>. If you are writing the code for the classes yourself this is very easy:</p> <pre><code>// C# sample namespace MyCompany.MyApp.Entities.Oracle { public class MyClass { // ... } } namespace MyCompany.MyApp.Entities.SqlServer { public class MyClass { // ... } } </code></pre> <p>If the classes are being auto-generated, you should check in the code generation tool how to specify namespaces. For example, with LINQ to SQL designer, you can specify the namespace in the table/class properties, or by editing the DBML file yourself.</p> http://stackoverflow.com/questions/1324806/can-you-explain-this-bizarre-crash-in-the-net-runtime/1325092#1325092 2 Answer by Lucas for Can you explain this bizarre crash in the .NET runtime? Lucas 2009-08-24T22:19:41Z 2009-08-24T22:19:41Z <p>You can try looking into the code for <code>System.IO.Path.GetFiles()</code> with <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">.NET Reflector</a>. From a quick look it apparently only calls <code>String.Substring()</code> to split something from the end of the path and adds it back near the end of the method. It checks <code>Path.DirectorySeparatorChar</code> (the backslash, <code>'\'</code>) and <code>Path.AltDirectorySeparatorChar</code> (the slash, <code>'/'</code>) to determine the index and length of the substring.</p> <p>My guess would be that invalid or unicode file or folder names are confusing the method.</p> http://stackoverflow.com/questions/173080/c-net-3-0-3-5-features-in-2-0-using-visual-studio-2008/173114#173114 14 Answer by Lucas for C# .NET 3.0/3.5 features in 2.0 using Visual Studio 2008 Lucas 2008-10-06T03:18:24Z 2009-08-16T03:25:07Z <p>You can use any new C# 3.0 feature that is handled by the compiler by emitting 2.0-compatible IL and doesn't reference any of the new 3.5 assemblies:</p> <ul> <li>Lambdas (used as <code>Func&lt;..&gt;</code>, not <code>Expression&lt;Func&lt;..&gt;&gt;</code> )</li> <li>Extension methods (by declaring an empty System.Runtime.CompilerServices.ExtensionAttribute)</li> <li>Automatic properties</li> <li>Object Initializers</li> <li>Collection Initializers </li> <li>LINQ to Objects (by implementing IEnumerable&lt;T&gt; extension methods, see <a href="http://www.albahari.com/nutshell/linqbridge.aspx" rel="nofollow">LinqBridge</a>)</li> </ul> http://stackoverflow.com/questions/972795/iequatable-interface-what-to-do-when-checking-for-null/972903#972903 1 Answer by Lucas for IEquatable Interface what to do when checking for null. Lucas 2009-06-09T22:54:14Z 2009-06-09T22:54:14Z <p>This is how ReSharper creates equality operators and implements <code>IEquatable&lt;T&gt;</code>, which I trust blindly, of course ;-)</p> <pre><code>public class ClauseBE : IEquatable&lt;ClauseBE&gt; { private int _id; public bool Equals(ClauseBE other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return other._id == this._id; } public override bool Equals(object obj) { if (ReferenceEquals(null, obj)) return false; if (ReferenceEquals(this, obj)) return true; if (obj.GetType() != typeof(ClauseBE)) return false; return Equals((ClauseBE)obj); } public override int GetHashCode() { return this._id.GetHashCode(); } public static bool operator ==(ClauseBE left, ClauseBE right) { return Equals(left, right); } public static bool operator !=(ClauseBE left, ClauseBE right) { return !Equals(left, right); } } </code></pre> http://stackoverflow.com/questions/963279/c-using-directory-getfiles-to-get-files-with-fixed-length/963408#963408 5 Answer by Lucas for C#: Using Directory.GetFiles to get files with fixed length Lucas 2009-06-08T04:26:54Z 2009-06-08T14:00:34Z <p>I know I've read about this somewhere before, but the best I could find right now was this reference to it in <a href="http://blogs.msdn.com/oldnewthing/archive/2007/12/17/6785519.aspx" rel="nofollow">Raymond Chen's blog post</a>. The point is that Windows keeps a short (8.3) filename for every file with a long filename, for backward compatibility, and filename <strong>wildcards are matched against both the long and short filenames</strong>. You can see these short filenames by opening a command prompt and running "<code>dir /x</code>". Normally, getting a list of files which match <code>????????.tif</code> (8) returns a list of file with 8 or less characters in their filename and a .tif extension. But <strong>every file with a long filename also has a short filename with 8.3 characters, so they all match this filter</strong>.</p> <p>In your case both <code>GZ96A7005.tif</code> and <code>GZ96A7005001.tif</code> are long filenames, so they both have a 8.3 short filename which matches <code>????????.tif</code> (anything with 8 or more <code>?</code>'s).</p> <p>UPDATE... from <a href="http://msdn.microsoft.com/en-us/library/wz42302f.aspx" rel="nofollow">MSDN</a>:</p> <blockquote> <p>Because this method checks against file names with both the 8.3 file name format and the long file name format, a search pattern similar to "<code>*1*.txt</code>" may return unexpected file names. For example, using a search pattern of "<code>*1*.txt</code>" returns "<code>longfilename.txt</code>" because the equivalent 8.3 file name format is "<code>LONGFI~1.TXT</code>".</p> </blockquote> <p><hr /></p> <p>UPDATE: The MSDN docs specifiy different behavior for the "<code>?</code>" wildcard in Directory.GetFiles() and DirectoryInfo.GetFiles(). The documentation seems to be wrong, however. See <a href="http://stackoverflow.com/questions/963279/c-using-directory-getfiles-to-get-files-with-fixed-length/963289#963289">Matthew Flaschen's answer</a>.</p> http://stackoverflow.com/questions/955594/when-exactly-does-applicationend-get-called-and-how-can-i-manually-cause-this/955776#955776 1 Answer by Lucas for When exactly does Application_End get called and how can I manually cause this? Lucas 2009-06-05T13:11:42Z 2009-06-05T13:11:42Z <p>Like <a href="http://stackoverflow.com/questions/955594/when-exactly-does-applicationend-get-called-and-how-can-i-manually-cause-this/955605#955605">Nick said</a>, "An application pool will recycle when... some of the recycle limits are hit on the application pool configuration." In IIS you can set the recycling conditions in the application pool settings. You can use fixed intervals (every X minutes or requests), a specific time of day, or memory-based maximums in MB (max virtual memory or max private memory), or a combination of any of these. You can also set an idle time-out in minutes after which a worker process is terminated.</p> <p><img src="http://i41.tinypic.com/2j13k1v.png" alt="IIS Recycling Settings" /></p> <p><img src="http://i42.tinypic.com/s2gz6t.png" alt="IIS Advanced Settings" /></p> http://stackoverflow.com/questions/947401/anything-wrong-with-releasing-software-in-debug-mode/948322#948322 0 Answer by Lucas for Anything wrong with releasing software in debug mode? Lucas 2009-06-04T02:34:28Z 2009-06-04T02:34:28Z <p>Other than the already mentioned performance, size, and decompiling...</p> <p><strong>Security:</strong> Debug builds and debugging information (e.g. pdb files) contain lots of information about the source code which not only makes decompiling much easier, but can also let users know internal details such as as filenames and network paths. Many companies may consider this information to be very sensitive.</p> http://stackoverflow.com/questions/836278/concurrency-with-linq-to-sql-stored-procedures/920854#920854 3 Answer by Lucas for Concurrency with Linq To Sql Stored Procedures Lucas 2009-05-28T13:30:17Z 2009-06-01T15:04:59Z <p>Are you using stored procedures directly (through a <code>SqlCommand</code>) or through LINQ to SQL? LINQ to SQL supports using stored procs for all its database access. You might want to look at <a href="http://weblogs.asp.net/scottgu/archive/2007/08/23/linq-to-sql-part-7-updating-our-database-using-stored-procedures.aspx" rel="nofollow">Updating our Database using Stored Procedures</a>, part 7 of <a href="http://weblogs.asp.net/scottgu/" rel="nofollow">Scott Guthrie</a>'s blog post series about LINQ to SQL. You can setup the use of sprocs through the DBML designer or in code using a <code>DataContext</code> partial class. The idea is that you send both the new and original values (e.g. <code>Name</code> and <code>OriginalName</code>) to the sproc so it can to its concurrency checking.</p> <p>If you are using the sproc directly and not through LINQ to SQL, and all you want is to get the object's original values, you can obtain them by using <code>Table&lt;T&gt;.GetOriginalEntityState()</code> like this:</p> <pre><code>Order modifiedOrder = db.Orders.First(); // using first Order as example modifiedOrder.Name = "new name"; // modifying the Order Order originalOrder = db.Orders.GetOriginalEntityState(modifiedOrder); </code></pre> http://stackoverflow.com/questions/875653/linq2sql-insert-records-to-related-tables/935167#935167 0 Answer by Lucas for Linq2Sql Insert Records To Related Tables Lucas 2009-06-01T14:52:40Z 2009-06-01T14:52:40Z <p>You might want to edit you data objects (normally by using the DBML designer) and rename the <code>Participant</code>-typed properties to <code>Applicant</code> and <code>Respondent</code> respectively. It'll be easier to work with than having <code>Participant</code> and <code>Participant1</code>. You can do this in the association properties (the lines that connect the tables).</p> <p>When you want to assign the foreign keys in <code>Challenge</code>, you have two choices. If you have the <code>Participant</code> objects themselves, you can assign them to the (newly renamed) <code>Applicant</code> and <code>Respondent</code> properties (and LINQ to SQL will update <code>ApplicantID</code> or <code>RespondentID</code> accordingly). Or if you have the <code>ParticipantID</code>s, you can assign them to <code>ApplicantID</code> or <code>RespondentID</code> directly.</p> http://stackoverflow.com/questions/928398/returning-nullable-string-types/928470#928470 1 Answer by Lucas for Returning nullable string types Lucas 2009-05-29T22:54:09Z 2009-05-29T22:54:09Z <p>As everyone else has said, <code>string</code> doesn't need <code>?</code> (which is a shortcut for <code>Nullable&lt;string&gt;</code>) because all reference types (<code>class</code>es) are already nullable. It only applies to value type (<code>struct</code>s).</p> <p>Apart from that, you should not call <code>ToString()</code> on the session value before you check if it is <code>null</code> (or you can get a <code>NullReferenceException</code>). Also, you shouldn't have to check the result of <code>ToString()</code> for <code>null</code> because it should never return <code>null</code> (if correctly implemented). And are you sure you want to return <code>null</code> if the session value is an empty <code>string</code> (<code>""</code>)?</p> <p>This is equivalent to what you meant to write:</p> <pre><code>public string SessionValue(string key) { if (HttpContext.Current.Session[key] == null) return null; string result = HttpContext.Current.Session[key].ToString(); return (result == "") ? null : result; } </code></pre> <p>Although I would write it like this (return empty <code>string</code> if that's what the session value contains):</p> <pre><code>public string SessionValue(string key) { object value = HttpContext.Current.Session[key]; return (value == null) ? null : value.ToString(); } </code></pre> http://stackoverflow.com/questions/826872/orms-and-constructors/927601#927601 0 Answer by Lucas for ORMs and Constructors Lucas 2009-05-29T19:04:12Z 2009-05-29T19:04:12Z <p>LINQ to SQL can bind to private fields but it does <em>not</em> however fully support a private parameterless constructor.</p> http://stackoverflow.com/questions/926695/format-for-passing-a-collection-to-a-method/927320#927320 2 Answer by Lucas for Format for Passing a Collection to a Method Lucas 2009-05-29T18:00:20Z 2009-05-29T18:40:25Z <blockquote> <p>"I've tried instantiating a Collection directly instead of a List and that doesn't seem to work."</p> </blockquote> <p>What error do you get? You can definitely create an instance of <code>Collection&lt;T&gt;</code> directly, it is not an abstract class and it has several public constructors, including one that's parameter-less. You can do this, for example:</p> <pre><code>var values = new System.Collections.ObjectModel.Collection&lt;int&gt; { 1,2,3,4 }; </code></pre> <p>I noticed your sample code has a <code>GenericTickType</code> and a <code>TickType</code>. Is this a mistake or do you actually have two classes? You said it's an enum (which one?), so one cannot possibly derive from the other. If they are two enum types, <code>Collection&lt;GenericTickType&gt;</code> and <code>Collection&lt;TickType&gt;</code> are two different classes and one is not assignable to the other.</p> <p>Now, if <code>TickType</code> is <em>castable</em> to <code>GenericTickType</code> (and they probably are if they are both enums, and assuming they share the same numeric values), you still cannot cast <code>Collection&lt;TickType&gt;</code> to <code>Collection&lt;GenericTickType&gt;</code>. There's no contra/co-variance in C# for most classes yet (coming in C# 4). But you could cast <em>each</em> <code>TickType</code> by doing something like this:</p> <pre><code>List&lt;GenericTickType&gt; list = new List&lt;GenericTickType&gt; { (GenericTickType)TickType.Price }; list.Add((GenericTickType)TickType.Price); // add more... Collection&lt;GenericTickType&gt;genericTicks = new Collection&lt;GenericTickType&gt;(list); </code></pre> <p>If you already have a <code>List&lt;TickType&gt;</code> and have access to C# 3.0 and LINQ, you can do this:</p> <pre><code>List&lt;TickType&gt; ticks = new List&lt;TickType&gt; { TickType.Price }; list.Add(TickType.Price); // add more... List&lt;GenericTickType&gt; castedList = ticks.Cast&lt;GenericTickType&gt;().ToList(); Collection&lt;GenericTickType&gt;genericTicks = new Collection&lt;GenericTickType&gt;(castedList); </code></pre> <p>This uses the LINQ <code>Cast&lt;T&gt;()</code> and <code>ToList&lt;T&gt;()</code> extension methods to cast <em>each</em> <code>TickType</code> in the original list to <code>GenericTickType</code> and creating a new <code>List&lt;GenericTickType&gt;</code> which is used to instantiate the <code>Collecion&lt;GenericTickType&gt;</code>. (I avoided using <code>var</code> so you could see the types in each step).</p> http://stackoverflow.com/questions/914109/how-to-use-linq-to-select-object-with-minimum-or-maximum-property-value/914279#914279 2 Answer by Lucas for How to use LINQ to select object with minimum or maximum property value Lucas 2009-05-27T06:38:34Z 2009-05-27T18:28:17Z <p>NOTE: I include this answer for completeness since the OP didn't mention what the data source is and we shouldn't make any assumptions.</p> <p>This query gives the correct answer, but <em>could be slower</em> since it might have to sort <em>all</em> the items in <code>People</code>, depending on what data structure <code>People</code> is:</p> <pre><code>var oldest = People.OrderBy(p =&gt; p.DateOfBirth ?? DateTime.MaxValue).First(); </code></pre> <p>UPDATE: Actually I shouldn't call this solution "naive", but the user does need to know what he is querying against. This solution's "slowness" depends on the underlying data. If this is a array or <code>List&lt;T&gt;</code>, then LINQ to Objects has no choice but to sort the entire collection first before selecting the first item. In this case it will be slower than the other solution suggested. However, if this is a LINQ to SQL table and <code>DateOfBirth</code> is an indexed column, then SQL Server will use the index instead of sorting all the rows. Other custom <code>IEnumerable&lt;T&gt;</code> implementations could also make use of indexes (see <a href="http://i4o.codeplex.com/" rel="nofollow">i4o: Indexed LINQ</a>, or the object database <a href="http://www.db4o.com/" rel="nofollow">db4o</a>) and make this solution faster than <code>Aggregate()</code> or <code>MaxBy()</code>/<code>MinBy()</code> which need to iterate the whole collection once. In fact, LINQ to Objects could have (in theory) made special cases in <code>OrderBy()</code> for sorted collections like <code>SortedList&lt;T&gt;</code>, but it doesn't, as far as I know.</p> http://stackoverflow.com/questions/809442/hosting-ie-8-in-winforms-and-opening-a-pdf/911161#911161 1 Answer by Lucas for Hosting IE 8 In WinForms and Opening a PDF Lucas 2009-05-26T15:00:45Z 2009-05-26T15:00:45Z <p>Seems to me the real problems is using a <code>WebBrowser</code> control to host the Adobe Reader web browser plugin to display PDFs. Isn't there a better way to display PDFs directly without introducing a dependency on a web browser? Doesn't Adobe provide an SDK or an ActiveX control you can host directly inside your form?</p> <p><hr /></p> <p>UPDATE: I looked around and found <a href="http://www.ureader.com/message/819807.aspx" rel="nofollow">this post</a> where they access an Adobe ActiveX control (<code>AxAcroPDFLib.AxAcroPDF</code>) and simply call:</p> <pre><code>axAcroPDF1.LoadFile("mypdf.pdf"); axAcroPDF1.Show(); </code></pre> http://stackoverflow.com/questions/867114/why-no-reference-counting-garbage-collection-in-c/908981#908981 2 Answer by Lucas for Why no Reference Counting + Garbage Collection in C#? Lucas 2009-05-26T04:52:36Z 2009-05-26T04:52:36Z <p>Brad Abrams posted <a href="http://blogs.msdn.com/brada/articles/371015.aspx" rel="nofollow">an e-mail from Brian Harry</a> written during development of the .Net framework. It details many of the reasons reference counting was not used, even when one of the early priorities was to keep semantic equivalence with VB6, which uses reference counting. It looks into possibilities such as having some types ref counted and not others (<code>IRefCounted</code>!), or having specific instances ref counted, and why none of these solutions were deemed acceptable.</p> <blockquote> <p>Because [the issue of resource management and deterministic finalization] is such a sensitive topic I am going to try to be as precise and complete in my explanation as I can. I apologize for the length of the mail. The first 90% of this mail is trying to convince you that the problem really is hard. In that last part, I'll talk about things we are trying to do but you need the first part to understand why we are looking at these options.</p> <p>...</p> <p>We initially started with the assumption that <strong>the solution would take the form of automatic ref counting</strong> (so the programmer couldn't forget) plus some other stuff to detect and handle cycles automatically. ...we <strong>ultimately concluded that this was not going to work in the general case.</strong></p> <p>...</p> <p>In summary:</p> <ul> <li>We feel that it is very important to <strong>solve the cycle problem</strong> without forcing programmers to understand, track down and design around these complex data structure problems.</li> <li>We want to make sure we have a high performance (both speed and working set) system and our analysis shows that using <strong>reference counting for every single object in the system will not allow us to achieve this goal</strong>.</li> <li>For a variety of reasons, including composition and casting issues, there is <strong>no simple transparent solution to having just those objects that need it be ref counted</strong>.</li> <li>We chose not to select a solution that provides <strong>deterministic finalization for a single language/context because it inhibits interop</strong> with other languages and causes bifurcation of class libraries by creating language specific versions.</li> </ul> </blockquote> http://stackoverflow.com/questions/902789/how-to-get-the-start-and-and-end-times-of-a-day/902921#902921 2 Answer by Lucas for How to get the start and and end times of a day Lucas 2009-05-24T02:18:24Z 2009-05-24T02:18:24Z <p>That's pretty much what I would do, with some small tweaks (really no big deal, just nitpicking):</p> <ul> <li>The <code>TryParse()</code>/<code>TryParseExact()</code> methods should be used which return <code>false</code> instead of throwing exceptions.</li> <li><code>FormatException</code> is more specific than <code>Exception</code></li> <li>No need to check for Length == 8, because <code>ParseExact()</code>/<code>TryParseExact()</code> will do this</li> <li><code>"00:00:00"</code> and <code>"23:59:59"</code> are not needed</li> <li>return <code>true</code>/<code>false</code> is you were able to parse, instead of throwing an exception (remember to check value returned from this method!)</li> </ul> <p>Code:</p> <pre><code>private bool ValidateDatePeriod(string pdr, out DateTime startDate, out DateTime endDate) { string[] dates = pdr.Split('-'); if (dates.Length != 2) { return false; } // no need to check for Length == 8 because the following will do it anyway // no need for "00:00:00" or "23:59:59" either, I prefer AddDays(1) if(!DateTime.TryParseExact(dates[0], "yyyyMMdd", null, DateTimeStyles.None, out startDate)) return false; if(!DateTime.TryParseExact(dates[1], "yyyyMMdd", null, DateTimeStyles.None, out endDate)) return false; endDate = endDate.AddDays(1); return true; } </code></pre> http://stackoverflow.com/questions/901968/c-reading-decimal-value-from-registry/902182#902182 1 Answer by Lucas for C# Reading Decimal Value From Registry Lucas 2009-05-23T18:48:39Z 2009-05-23T18:48:39Z <p>You shouldn't trust the value from the registry since a user can edit it outside your application. You need to handle the following cases:</p> <ul> <li>registry key doesn't exist</li> <li>registry key exists, but name/value doesn't exist (<code>null</code>)</li> <li>you expect a <code>string</code>, value is not <code>string</code> type (e.g. it is an <code>int</code> or <code>byte[]</code>)</li> <li>value is a <code>string</code> but not parsable to <code>decimal</code> (<code>""</code>, <code>"abc"</code>)</li> </ul> <p>If the key doesn't exist, <code>RegistryKey.OpenSubKey(name)</code> returns null. You might want to handle that and create the key. If the key exists, but not the name/value pair, then <code>RegistryKey.GetValue(name)</code> returns null. You can handle that by passing a default value to the overload <code>RegistryKey.GetValue(name, defaultValue)</code> or by using <code>??</code>.</p> <p>Now, if the name/value pair exists but has an invalid value (<code>""</code>, <code>"abc"</code>), you'll get an exception from <code>Parse()</code>. The <code>Parse()</code> methods (in <code>int</code>, <code>decimal</code>, <code>DateTime</code>, etc) have been pretty much been deprecated by <code>TryParse()</code>. They return <code>false</code> instead of throwing <code>FormatException</code>.</p> <pre><code>// passing the default value to GetValue() object regValue = APRegistry.GetValue("apTime", "0"); // ...same as... object regValue = APRegistry.GetValue("apTime") ?? "0"; decimal value; // regValue will never be null here, so safe to use ToString() if(decimal.TryParse(regValue.ToString(), out value)) { this.apTime.Value = value; } else { // Name/pair does not exist, is empty, // or has invalid value (can't parse as decimal). // Handle this case, possibly setting a default value like this: this.apTime.Value = 0; } </code></pre> http://stackoverflow.com/questions/372693/convert-string-to-brushes-brush-name-in-c/899829#899829 1 Answer by Lucas for Convert string to Brushes/Brush name in C# Lucas 2009-05-22T20:24:44Z 2009-05-22T20:24:44Z <p>Recap of all previous answers, different ways to convert a string to a Color or Brush:</p> <pre><code>// best, using Color's static method Color red1 = Color.FromName("Red"); // using a ColorConverter TypeConverter tc1 = TypeDescriptor.GetConverter(typeof(Color)); // ..or.. TypeConverter tc2 = new ColorConverter(); Color red2 = (Color)tc.ConvertFromString("Red"); // using Reflection on Color or Brush Color red3 = (Color)typeof(Color).GetProperty("Red").GetValue(null, null); // in WPF you can use a BrushConverter SolidColorBrush redBrush = (SolidColorBrush)new BrushConverter().ConvertFromString("Red"); </code></pre> http://stackoverflow.com/questions/892696/where-can-i-find-an-unsharp-mask-for-c/893176#893176 1 Answer by Lucas for Where can I find an unsharp mask for C#? Lucas 2009-05-21T14:22:40Z 2009-05-21T15:02:52Z <p>The <a href="http://www.aforgenet.com/framework/" rel="nofollow">AForge.NET Framework</a> includes many image processing filters and support plugging your own. You can see it in action in their own <a href="http://www.aforgenet.com/projects/iplab/" rel="nofollow">Image Processing Lab</a> application.</p> <p><hr /></p> <p>UPDATE: AForge.NET has a convolution-based <a href="http://www.aforgenet.com/framework/docs/html/c5a43907-302d-3d0d-1ab1-a39b9d0f7013.htm" rel="nofollow">sharpen</a> filter (see <a href="http://www.aforgenet.com/framework/features/convolution%5Ffilters.html" rel="nofollow">convolution filters</a>), but there's no mention of an unsharp mask filter per se. Then again, you can use the Gaussian blur filter and subtract the result from the original image, which is basically what the unsharp mask filter does. Or maybe the basic sharpen is enough for your needs.</p> <p><hr /></p> <p>UPDATE: Looked further, and AForge.NET does have a <a href="http://www.aforgenet.com/framework/docs/html/4600a4d7-825b-138f-5c31-249a10335b26.htm" rel="nofollow">Gaussian sharpen</a> which seems to be an implemenation of an unsharp mask filter, and you <em>can</em> control some parameters.</p> http://stackoverflow.com/questions/1866834/why-does-this-linq-to-sql-query-get-a-notsupportedexception Comment by Lucas on Why does this LINQ-to-SQL query get a NotSupportedException? Lucas 2009-12-08T13:10:58Z 2009-12-08T13:10:58Z Note that this is not a &quot;not implemented&quot; error, it's a &quot;local sequence cannot be used&quot; error. http://stackoverflow.com/questions/114165/how-to-implement-wix-installer-upgrade/114736#114736 Comment by Lucas on How to implement WiX installer upgrade? Lucas 2009-12-02T21:38:38Z 2009-12-02T21:38:38Z note that this will remove <i>any</i> version installed, even if it is newer than the one you are trying to install http://stackoverflow.com/questions/1833054/how-can-i-format-a-nullable-datetime-with-tostring/1833083#1833083 Comment by Lucas on How can I format a nullable DateTime with ToString()? Lucas 2009-12-02T14:23:29Z 2009-12-02T14:23:29Z The behaviour with ToString(&quot;yy...&quot;) <i>is</i> defined if the instance is null, because GetValueOrDefault() will return DateTime.MinValue http://stackoverflow.com/questions/1832815/initialize-dictionary-in-net-2-0/1832843#1832843 Comment by Lucas on Initialize Dictionary in .Net 2.0 Lucas 2009-12-02T14:20:24Z 2009-12-02T14:20:24Z the requirement is C# 3.0, not .NET 3.5, because it works (with the C# 3.0 compiler) even if targeting .Net 2.0 http://stackoverflow.com/questions/1261319/drag-and-drop-files-into-vs-2008-in-win-7/1808775#1808775 Comment by Lucas on Drag and drop files into VS 2008 in Win 7 Lucas 2009-11-27T14:33:32Z 2009-11-27T14:33:32Z well, there you go :) http://stackoverflow.com/questions/1261319/drag-and-drop-files-into-vs-2008-in-win-7/1808775#1808775 Comment by Lucas on Drag and drop files into VS 2008 in Win 7 Lucas 2009-11-27T13:43:13Z 2009-11-27T13:43:13Z Correct. My question is, why are you all running Visual Studio elevated (as admin)? I know in some cases it is required, but not <i>always</i>. http://stackoverflow.com/questions/1756839/how-to-pivot-ienumerablet/1756990#1756990 Comment by Lucas on How to Pivot IEnumerable<T> Lucas 2009-11-19T13:07:47Z 2009-11-19T13:07:47Z can you provide a code sample? http://stackoverflow.com/questions/1656361/how-many-possible-urls-can-you-make-with-the-following-characters/1656362#1656362 Comment by Lucas on How many possible URLs can you make with the following characters? Lucas 2009-11-01T04:44:35Z 2009-11-01T04:44:35Z it's neither permutations nor combinations, since the characters can be repeated several times. http://stackoverflow.com/questions/1654887/random-next-returns-always-the-same-values/1654917#1654917 Comment by Lucas on Random.Next returns always the same values Lucas 2009-10-31T18:38:39Z 2009-10-31T18:38:39Z i think with this range it can also return 1 and they only want 0 and -1? http://stackoverflow.com/questions/1605382/get-birthday-reminder-linq-query-ignoring-year/1605438#1605438 Comment by Lucas on Get Birthday reminder Linq Query ignoring year. Lucas 2009-10-30T18:46:31Z 2009-10-30T18:46:31Z Also, what will happen when <code>DateTime.Now</code> is in last 20 days of the year? Will you find birthdays coming up in January of the next year? http://stackoverflow.com/questions/1605382/get-birthday-reminder-linq-query-ignoring-year/1605438#1605438 Comment by Lucas on Get Birthday reminder Linq Query ignoring year. Lucas 2009-10-30T18:41:37Z 2009-10-30T18:41:37Z You can't assign a value to <code>DateTime.Year</code> like this because it is a read-only property and <code>DateTime</code> is an immutable type. What you <i>can</i> do is create a new <code>DateTime</code> with the values you want: <code>var birthday = new DateTime(DateTime.Now.Year, actualBirthday.Month, actualBirthday.Day;</code> http://stackoverflow.com/questions/73227/what-is-the-difference-between-lambdas-and-delegates-in-the-net-framework/73408#73408 Comment by Lucas on What is the difference between lambdas and delegates in the .NET Framework? Lucas 2009-10-29T23:12:08Z 2009-10-29T23:12:08Z You mean lambdas are like simplified anonymous methods (not delegate). Like methods (anonymous or not), they can be assigned to a delegate variable. http://stackoverflow.com/questions/1200639/csharpcodeprovider-seems-to-be-stuck-at-net-2-0-how-do-i-get-new-features/1200665#1200665 Comment by Lucas on CSharpCodeProvider seems to be stuck at .NET 2.0, how do I get new features? Lucas 2009-10-26T19:47:49Z 2009-10-26T19:47:49Z No, they wouldn't. You want C# 3.0 language features, not (necessarily) the .NET framework 3.5 class library. One does not require the other. http://stackoverflow.com/questions/1615800/c-operators-and-readability/1615840#1615840 Comment by Lucas on C# Operators and readability Lucas 2009-10-23T22:06:54Z 2009-10-23T22:06:54Z see Petrotta's answer above: <a href="http://stackoverflow.com/questions/1615800/c-operators-and-readability/1615835#1615835" rel="nofollow" title="c operators and readability">stackoverflow.com/questions/1615800/&hellip;</a> http://stackoverflow.com/questions/1615800/c-operators-and-readability/1615835#1615835 Comment by Lucas on C# Operators and readability Lucas 2009-10-23T22:05:42Z 2009-10-23T22:05:42Z or make it generic: <code>In&lt;T&gt;(this T value, params T[] values)</code>