User Lars M&#230;hlum - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T14:01:23Z http://stackoverflow.com/feeds/user/960 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067 3 Answer by Lars Mæhlum for Hidden Features of C#? Lars Mæhlum 2008-08-12T17:29:29Z 2009-10-07T07:57:49Z <p>I have often come across the need to have a Generic parameter-object persisted into the viewstate in a base class.</p> <pre><code>public abstract class BaseListControl&lt;ListType,KeyType,ParameterType&gt; : UserControl where ListType : BaseListType &amp;&amp; ParameterType : BaseParameterType, new { private const string viewStateFilterKey = "FilterKey"; protected ParameterType Filters { get { if (ViewState[viewStateFilterKey] == null) ViewState[viewStateFilterKey]= new ParameterType(); return ViewState[viewStateFilterKey] as ParameterType; } set { ViewState[viewStateFilterKey] = value; } } } </code></pre> <p>Usage:</p> <pre><code>private void SomeEventHappened(object sender, EventArgs e) { Filters.SomeValue = SomeControl.SelectedValue; } private void TimeToFetchSomeData() { GridView.DataSource = Repository.GetList(Filters); } </code></pre> <p>This little trick with the "where ParameterType : BaseParameterType, new" is what makes it really work.<br /> With this property in my baseclass, I can automate handling of paging, setting filter values to filter a gridview, make sorting really easy, etc etc.</p> <p>Really just saying that generics can be an enormously powerful beast in the wrong hands.</p> http://stackoverflow.com/questions/1421403/c-for-how-long-was-user-inactive/1421420#1421420 0 Answer by Lars Mæhlum for C# For how long was user inactive Lars Mæhlum 2009-09-14T13:03:09Z 2009-09-14T13:03:09Z <p>Hook an event handler on the MouseMove and KeyPressed events, and then check for focus inside that event?</p> http://stackoverflow.com/questions/829796/using-elmah-in-a-sharepoint-environment/829802#829802 0 Answer by Lars Mæhlum for Using ELMAH in a Sharepoint environment Lars Mæhlum 2009-05-06T14:13:49Z 2009-05-06T14:13:49Z <p>There is no magic to it, just hook it up like you would on any other ASP.NET site.</p> http://stackoverflow.com/questions/772815/form-submission-on-web-image-containing-characters-for-user-to-type-in/772820#772820 2 Answer by Lars Mæhlum for Form submission on web - image containing characters for user to type in Lars Mæhlum 2009-04-21T14:22:35Z 2009-04-21T14:22:43Z <p>A) Captcha<br /> B) <a href="http://recaptcha.net/" rel="nofollow" title="ReCaptcha">ReCaptcha</a></p> http://stackoverflow.com/questions/711820/asp-net-error-when-trying-to-access-page/711857#711857 2 Answer by Lars Mæhlum for ASP.NET Error when trying to access page... Lars Mæhlum 2009-04-02T22:23:13Z 2009-04-02T22:23:13Z <p>As it says in the error message:<br /> "This error can be caused by a virtual directory not being configured as an application in IIS."</p> <p>Configure it as an application, and it will be fine. </p> <p>IIS 5/6:<br /> <a href="http://msdn.microsoft.com/en-us/library/zwk103ab.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/zwk103ab.aspx</a></p> <p>IIS 7:<br /> <a href="http://mvolo.com/blogs/serverside/archive/2007/07/12/Creating-IIS7-sites_2C00_-applications_2C00_-and-virtual-directories.aspx" rel="nofollow">http://mvolo.com/blogs/serverside/archive/2007/07/12/Creating-IIS7-sites_2C00_-applications_2C00_-and-virtual-directories.aspx</a></p> http://stackoverflow.com/questions/691021/sql-join-on-vs-equals/691039#691039 10 Answer by Lars Mæhlum for SQL JOIN: ON vs Equals Lars Mæhlum 2009-03-27T18:50:43Z 2009-03-27T18:50:43Z <p>There is no difference, but the readability of the second is much better when you have a big multi-join query with extra where clauses for filtering.<br /> Separating the join clauses and the filter clauses is a Good Thing :)</p> http://stackoverflow.com/questions/673020/what-is-a-correct-way-to-initiate-user-control-from-code-behind/673058#673058 1 Answer by Lars Mæhlum for What is a correct way to initiate user control from code behind Lars Mæhlum 2009-03-23T11:35:14Z 2009-03-23T11:35:14Z <p>Should be something like this:</p> <pre><code> var comment = (IncidentHistoryGroupComment)Page.LoadControl("~/Controls/IncidentHistoryGroupComment.ascx"); </code></pre> <p>Then you just insert into the control tree</p> http://stackoverflow.com/questions/661565/just-for-fun-when-do-you-have-your-coffee/661573#661573 2 Answer by Lars Mæhlum for Just for fun: when do you have your coffee? Lars Mæhlum 2009-03-19T09:41:12Z 2009-03-19T09:41:12Z <p>When: The cup is empty<br /> Flavor: Strong!</p> http://stackoverflow.com/questions/616318/what-is-the-best-way-to-implement-precomputed-data/616370#616370 1 Answer by Lars Mæhlum for What is the best way to implement precomputed data? Lars Mæhlum 2009-03-05T19:55:15Z 2009-03-05T19:55:15Z <p>As Daniel Lew said, serialize it into a binary file.<br /> If you need speed, go for a Dictionary. A Dictionary is indexed on it's key, and should allow rapid lookup even with large amounts of data.</p> http://stackoverflow.com/questions/565206/mutually-beneficial-ip-copyright-clauses-for-contract-based-freelance-work/565223#565223 3 Answer by Lars Mæhlum for Mutually beneficial IP/copyright clauses for contract-based freelance work Lars Mæhlum 2009-02-19T13:03:20Z 2009-02-19T13:03:20Z <p>Create a license that grants the client the right to use and modify the software, but restricts distribution outside the organization the software is licensed to.</p> <p>That should cover your needs, since you state in your contract with the client that you retain control over the copyright of the software, and they license it from you under a license chosen when the contract is signed.</p> <p>As long as you also sign a NDA when you sign the contract, their secrets will be covered by that.</p> <p>Edit: Oh yeah, almost forgot: IANAL</p> http://stackoverflow.com/questions/564632/how-can-i-encrypt-a-message-in-perl-to-decrypt-it-in-c/564640#564640 7 Answer by Lars Mæhlum for How can I encrypt a message in Perl to decrypt it in C#? Lars Mæhlum 2009-02-19T10:16:48Z 2009-02-19T10:16:48Z <p>Use AES encryption with a common secret key.</p> <p><a href="http://www.google.no/search?hl=no&amp;q=AES+perl&amp;btnG=Google-s%C3%B8k&amp;meta=&amp;aq=f&amp;oq=" rel="nofollow">Perl</a></p> <p><a href="http://www.google.no/search?hl=no&amp;safe=off&amp;q=AES+c%23&amp;btnG=S%C3%B8k&amp;meta=" rel="nofollow">C#</a></p> http://stackoverflow.com/questions/563135/how-we-run-net-32bit-application-in-a-64bit-windows-server/563143#563143 1 Answer by Lars Mæhlum for How we run .NET 32bit Application in a 64bit Windows Server? Lars Mæhlum 2009-02-18T22:31:35Z 2009-02-18T22:31:35Z <p>I'm not sure this will help, but check it out:<br /> <a href="http://msdn.microsoft.com/en-us/library/ms164699(VS.80).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms164699(VS.80).aspx</a></p> http://stackoverflow.com/questions/562986/c-generic-lists/563027#563027 8 Answer by Lars Mæhlum for C# Generic Lists Lars Mæhlum 2009-02-18T21:59:35Z 2009-02-18T22:05:39Z <p>Define your class like this:</p> <pre><code>class Foo&lt;T&gt; : IFoo { public Foo(string name) { Name = name; } string Name { get; set; } T Value {get; set;} Type FooType { get { return typeof(T); } } } </code></pre> <p>You could then define the interface IFoo as: </p> <pre><code>string Name { get; set; } Type FooType { get; set; } </code></pre> <p>And declare a list as: </p> <pre><code>List&lt;IFoo&gt; list = new List&lt;IFoo&gt;(); </code></pre> http://stackoverflow.com/questions/561920/what-is-a-good-naming-convention-for-domain-objects-versus-their-relational-table/562317#562317 0 Answer by Lars Mæhlum for What is a good naming convention for domain objects versus their relational tables? Lars Mæhlum 2009-02-18T18:35:35Z 2009-02-18T18:35:35Z <p>I use to call the Linq2SQL objects DbUser and so on.<br /> This makes it very easy to scan through the code and see which is which, and since the L2S data objects are only accessible in the DataTier, the wierd naming is less of a problem.</p> http://stackoverflow.com/questions/541705/is-iftrue-a-good-idea-in-c/541710#541710 6 Answer by Lars Mæhlum for Is if(TRUE) a good idea in C? Lars Mæhlum 2009-02-12T15:13:37Z 2009-02-12T15:13:37Z <p>You probably want to create a new function for that scope.<br /> If it truly needs to have it's own scope, it's probably a separate logical function anyway.</p> http://stackoverflow.com/questions/323613/heterogeneous-dictionary-but-typed/323712#323712 1 Answer by Lars Mæhlum for Heterogeneous Dictionary, but typed? Lars Mæhlum 2008-11-27T13:06:02Z 2008-11-27T13:52:59Z <p>A Dictionary is not the way to do it.<br /> You really want a Person class for storing those values.</p> <p>And, it is much easier to both create collections and catch errors with classes.</p> <p><b>EDIT:</b> </p> <p>Since you need a semi-strongly typed dict:</p> <pre><code>public class CustomDictionary : Dictionary&lt;string,object&gt; { public T GetTyped&lt;T&gt;(string key) where T : IConvertible { return (T)Convert.ChangeType(base[key], typeof (T)); } } </code></pre> <p>Usage:</p> <pre><code>CustomDictionary dictionary = new CustomDictionary(); dictionary.Add("Test",1.2); var d = dictionary.GetTyped&lt;double&gt;("Test"); </code></pre> http://stackoverflow.com/questions/246068/how-do-you-define-a-single-responsibility/317331#317331 1 Answer by Lars Mæhlum for How do you define a Single Responsibility? Lars Mæhlum 2008-11-25T13:35:13Z 2008-11-25T13:35:13Z <p>If you end up with <code>MethodA</code> that uses <code>MemberA</code> and <code>MethodB</code> that uses <code>MemberB</code> and it is <em>not</em> part of some concurrency og versioning scheme, you might be violating SRP.</p> <p>If you notice that you have a class that just delegates calls to a lot of other classes, you might be stuck in proxy class hell. This is especially true if you end up instantiating the proxy class everywhere when you could just use the specific classes directly. I have seen a lot of this. Think <code>ProgramNameBL</code> and <code>ProgramNameDAL</code> classes as a substitute for using a Repository pattern.</p> http://stackoverflow.com/questions/286571/how-can-i-invoke-web-button-click-in-c/286595#286595 1 Answer by Lars Mæhlum for How can I invoke (web) Button.Click in c#? Lars Mæhlum 2008-11-13T09:12:39Z 2008-11-13T09:35:42Z <p>You will need an event to act as a proxy, but you are pretty much better off just refactoring your code.</p> <pre><code> private EventHandler ButtonClick; protected override void CreateChildControls() { base.CreateChildControls(); m_Button = new Button{Text = "Do something"}; m_Button.Click += ButtonClick; ButtonClick += button_Click; Controls.Add(m_Button); } private void MakeButtonDoStuff() { ButtonClick.Invoke(this, new EventArgs()); } private void button_Click(object sender, EventArgs e) { } </code></pre> <p>Do not do this if you really dont need it. It will make a mess of your code.</p> http://stackoverflow.com/questions/182529/creating-controls-within-a-loop/182551#182551 0 Answer by Lars Mæhlum for Creating controls within a Loop Lars Mæhlum 2008-10-08T12:48:16Z 2008-10-08T12:48:16Z <p>This should work fine?</p> <pre><code>for (int i = 0; i &lt; 6; i++) { TableCell tCell = new TableCell(); TextBox txt = new TextBox(); tCell.Controls.Add(txt); tRow.Cells.Add(tCell); } </code></pre> <p>I don't really get what you need the names for though.<br /> Do you plan on using the "txt5" name as a reference to that specific textbox?<br /> Why not just use <code>tRow.Cells[4].Controls[0] As TextBox</code> ?</p> http://stackoverflow.com/questions/72564/multiple-return-values-to-indicate-success-failure/72656#72656 2 Answer by Lars Mæhlum for Multiple return values to indicate success/failure. Lars Mæhlum 2008-09-16T14:06:52Z 2008-09-16T14:06:52Z <p>Often you will return 0 to indicate success, and 1,2,3 etc to indicate different failures.<br /> Your way of doing it is kinda hackish, because you can only have so many errors, and this kind of coding <em>will</em> bite you sooner or later.</p> <p>I like defining a struct/object that includes a Boolean to indicate success, and an error message or other value indicate what kind of error occurred. You can also include other fields to indicate what kind of action was executed.<br /> This makes logging very easy, since you can then just pass the status-struct into the logger and it will then insert the appropriate log entry.</p> http://stackoverflow.com/questions/9543/how-do-you-deploy-your-sharepoint-solutions 8 How do you deploy your SharePoint solutions? Lars Mæhlum 2008-08-13T07:33:45Z 2008-09-16T09:42:32Z <p>I am now in the process of planning the deployment of a SharePoint solution into a production environment.<br /> I have read about some tools that promise an easy way to automate this process, but nothing that seems to fit my scenario.</p> <p>In the testing phase I have used SharePoint Designer to copy site content between the different development and testing servers, but this process is manual and it seems a bit unnecessary.</p> <p>The site is made up of SharePoint web part pages with custom web parts, and a lot of Reporting Services report definitions.</p> <p>So, is there any good advice out there in this vast land of geeks on how to most efficiently create and deploy a SharePoint site for a multiple deployment scenario?</p> <p><strong>Edit</strong><br /> Just to clarify. I need to deploy several "SharePoint Sites" into an existing site collection. Since SharePoint likes to have its sites in the SharePoint content database, just putting the files into IIS is not an option at this time.</p> http://stackoverflow.com/questions/62153/reasons-not-to-build-your-own-bug-tracking-system/62170#62170 26 Answer by Lars Mæhlum for Reasons not to build your own bug tracking system Lars Mæhlum 2008-09-15T11:05:56Z 2008-09-15T11:05:56Z <p>I would want to turn the question around. WHY on earth would you want to build your own?<br /> If you need some extra fields, go with an existing package that can be modified.<br /> Special report? Tap into the database and make it. </p> <p>Believing that it isn't difficult? Try then. Spec it up, and see the list of features and hours grow. Then after the list is complete, try to find an existing package that can be modified before you implement your own. </p> <p>In short, don't reinvent the wheel when another one just needs some tweaking to fit.</p> http://stackoverflow.com/questions/61437/what-are-some-viable-alternatives-to-biztalk-server/61997#61997 0 Answer by Lars Mæhlum for What are some viable alternatives to BizTalk Server? Lars Mæhlum 2008-09-15T08:12:31Z 2008-09-15T08:12:31Z <p>I have no direct experience with JitterBit, but I have heard very good things from coworkers.</p> http://stackoverflow.com/questions/57386/where-should-interfaces-physically-live/57391#57391 7 Answer by Lars Mæhlum for Where should interfaces "physically live"? Lars Mæhlum 2008-09-11T19:22:14Z 2008-09-11T19:29:43Z <p>Put your domain objects and interfaces in a seperate "domain" assembly.<br /> This assembly should never reference anything but the core .net assemblies.</p> <p>This way you get a clean seperation from your domain/service model and your implementation.</p> <p><em>Edit:</em><br /> <a href="http://jeffreypalermo.com/blog/the-onion-architecture-part-1/" rel="nofollow">http://jeffreypalermo.com/blog/the-onion-architecture-part-1/</a></p> http://stackoverflow.com/questions/55845/should-data-security-be-performed-on-the-database-side/57400#57400 2 Answer by Lars Mæhlum for Should data security be performed on the database side? Lars Mæhlum 2008-09-11T19:25:34Z 2008-09-11T19:25:34Z <p>IMHO:</p> <p>Application service tier -> application logic and validation<br /> Application data tier -> data logic and security<br /> Database -> data consistency </p> <p>You will be bitten by the sproc approach sooner or later, I have learned this the hard way.<br /> Procs are great for one shot operations that need a lot of performance, but the CRUD part is the data tiers job</p> http://stackoverflow.com/questions/53132/mouse-for-programmer/53746#53746 10 Answer by Lars Mæhlum for Mouse for programmer Lars Mæhlum 2008-09-10T10:18:59Z 2008-09-10T10:18:59Z <p><em>Logitech M-UV96</em><br /> <img src="http://www.edigital.hu/files/normal/d_25113.jpg" alt="Logitech M-UV96" /></p> <p>As simple as they come :)<br /> Best of all, it's really comfortable and precise.</p> http://stackoverflow.com/questions/46346/net-console-application-tab-completion/47594#47594 1 Answer by Lars Mæhlum for .NET Console Application Tab Completion Lars Mæhlum 2008-09-06T15:56:53Z 2008-09-06T15:56:53Z <p>Do a Console.ReadKey(). </p> <p>If you get a Tab, look at what you have in the command buffer, and loop through your available commands. If <code>someCommand.Name.BeginsWith(currentinput)</code>, you have a winner, and you can write to screen a list of possible commands. </p> <p>If <em>there is only one(TM)</em> you can substitute it with what the user had typed :)</p> http://stackoverflow.com/questions/47475/are-unit-test-names-important/47550#47550 2 Answer by Lars Mæhlum for Are unit-test names important? Lars Mæhlum 2008-09-06T15:20:32Z 2008-09-06T15:20:32Z <p>Yes.</p> <pre><code> [Test] public void UsernameValidator_LessThanLengthLimit_ShouldValidate() {} </code></pre> <p>Put the test subject first, the test statement next, and the expected result last.<br /> That way, you get a clear indication of what it is doing, and you can easily sort by name :)</p> http://stackoverflow.com/questions/45621/how-do-you-deal-with-polymorphism-in-a-database/45646#45646 1 Answer by Lars Mæhlum for How do you deal with polymorphism in a database? Lars Mæhlum 2008-09-05T12:26:51Z 2008-09-05T12:26:51Z <p>I'd say that, depending on what differentiates Person and Special Person, you probably don't want polymorphism for this task. </p> <p>I'd create a User table, a Person table that has a nullable foreign key field to User (i.e, the Person can be a User, but does not have to).<br /> Then I would make a SpecialPerson table which relates to the Person table with any extra fields in it. If a record is present in SpecialPerson for a given Person.ID, he/she/it is a special person.</p> http://stackoverflow.com/questions/45152/what-are-you-currently-using-for-data-access/45257#45257 0 Answer by Lars Mæhlum for What are you currently using for data access? Lars Mæhlum 2008-09-05T05:13:24Z 2008-09-05T05:13:24Z <p>I usually create a DataTier with LiNQ.<br /> It consist of repositories that implement composite interfaces, so I have total flexibility on how to use them. </p> <pre><code>IPersonRepository : IReadRepository&lt;Person&gt;, ICreateRepository&lt;Person&gt;, IUpdateRepository&lt;Person&gt; //and so on.. </code></pre> <p>They are mostly domain object centric, so they emit domain objects and take care of all the mapping logic themselves.<br /> They might also create some list dictionaries, f.ex a dictionary consisting of the id and name of a person, so I don't have to pull up too much from the db to display a drop down list.<br /> Although sometimes, for smaller projects, I just use Attribute base mapping without a .dbml.</p> <p>I feel that this approach gives a very clean application model, because all the messy data centric logic is hidden in the DataTier. The Business-/ServiceTier is pure business :)</p> http://stackoverflow.com/questions/1755703/averaging-an-average-in-mysql Comment by Lars Mæhlum on Averaging an average in mySQL Lars Mæhlum 2009-11-18T12:58:30Z 2009-11-18T12:58:30Z Don't average the averages, as you will loose the weight of the averages. i.e: 10 cars at 50 mpg average and one car at 10 mpg &quot;average&quot; will give you 30mpg as the total average, which is very wrong :) http://stackoverflow.com/questions/1755670/architecture-for-extension-plugin-communication/1755687#1755687 Comment by Lars Mæhlum on Architecture for extension/plugin communication Lars Mæhlum 2009-11-18T12:53:23Z 2009-11-18T12:53:23Z Interfaces would probably be my approach, though it depends on the application and it's plugin needs. But it's a very clean way to do plugins, and it will also be easy to isolate exceptions from the plugin. http://stackoverflow.com/questions/1755416/how-can-i-parse-the-following-text-file/1755433#1755433 Comment by Lars Mæhlum on How can I parse the following text file? Lars Mæhlum 2009-11-18T12:44:03Z 2009-11-18T12:44:03Z There is a clear way to distinguish them: '\t' http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067 Comment by Lars Mæhlum on Hidden Features of C#? Lars Mæhlum 2009-10-07T07:57:30Z 2009-10-07T07:57:30Z No, the little trick is constraining to BaseParameterType. A bit of a typo :\ http://stackoverflow.com/questions/884186/can-ruby-php-or-perl-create-a-pre-compiled-file-for-the-code-like-python/884469#884469 Comment by Lars Mæhlum on Can Ruby, PHP, or Perl create a pre-compiled file for the code like Python? Lars Mæhlum 2009-05-20T08:19:33Z 2009-05-20T08:19:33Z &quot;hysterical raisins&quot; ? http://stackoverflow.com/questions/691021/sql-join-on-vs-equals/691039#691039 Comment by Lars Mæhlum on SQL JOIN: ON vs Equals Lars Mæhlum 2009-05-19T08:05:53Z 2009-05-19T08:05:53Z Joel: Very true :) http://stackoverflow.com/questions/820648/how-is-babby-formed Comment by Lars Mæhlum on How is babby formed? Lars Mæhlum 2009-05-04T15:47:34Z 2009-05-04T15:47:34Z Its a spoof of a Yahoo Answers question http://stackoverflow.com/questions/819793/what-is-the-difference-between-a-namespace-a-class-an-object-and-an-instance/819813#819813 Comment by Lars Mæhlum on What is the difference between a namespace, a class, an object and an instance? Lars Mæhlum 2009-05-04T12:09:15Z 2009-05-04T12:09:15Z +1 Nothing beats a good car analogy :) http://stackoverflow.com/questions/819670/transfering-nodes-between-treeviews Comment by Lars Mæhlum on Transfering Nodes Between TreeViews Lars Mæhlum 2009-05-04T11:08:04Z 2009-05-04T11:08:04Z Please take a deep breath before writing, and use some punctuation. http://stackoverflow.com/questions/783446/anyone-have-an-example-of-a-cool-regular-expression-you-used-in-c-code Comment by Lars Mæhlum on Anyone have an example of a cool regular expression you used in C# code? Lars Mæhlum 2009-04-23T21:23:17Z 2009-04-23T21:23:17Z So, where is the complete and all inclusive email address regexp? http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067 Comment by Lars Mæhlum on Hidden Features of C#? Lars Mæhlum 2009-04-23T14:22:51Z 2009-04-23T14:22:51Z Its pretty simple actually. If you have a GridView with a couple of DropDownLists to filter out content, you just put the values into your filter object that is persisted between postbacks, and send it as a parameter to the method that fetches data from the DB. You would just implement your UserControl inheriting from BaseListControl, and the base takes care of persisting &quot;state&quot; between postbacks. http://stackoverflow.com/questions/775114/how-would-i-write-this-as-a-single-linq-query/775132#775132 Comment by Lars Mæhlum on How would I write this as a single LINQ query? Lars Mæhlum 2009-04-21T23:52:04Z 2009-04-21T23:52:04Z If it is in a loop somewhere, then you should strive for one round trip. If it executes once in a while, readability should be your priority. http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in/741584#741584 Comment by Lars Mæhlum on What are the worst working conditions you have written code in? Lars Mæhlum 2009-04-14T16:19:54Z 2009-04-14T16:19:54Z +10 000, top that one! http://stackoverflow.com/questions/711722/how-to-save-my-sanity-while-maintaining-spaghetti-code/711729#711729 Comment by Lars Mæhlum on How to save my sanity while maintaining spaghetti code Lars Mæhlum 2009-04-02T22:29:51Z 2009-04-02T22:29:51Z If the code is at all testable, it's not real pasta ;) http://stackoverflow.com/questions/681435/what-is-the-best-way-to-determine-if-a-system-datetime-is-midnight/681451#681451 Comment by Lars Mæhlum on What is the best way to determine if a System.DateTime is midnight? Lars Mæhlum 2009-03-25T13:20:07Z 2009-03-25T13:20:07Z Actually, those should perform more or less equally, since Ticks is used as an internal value in TimeSpan. So (timespan == timespan) is more or less the same as (timespan.ticks == timespan.ticks) which in both cases will be (timespan.ticks == 0)