User Tor Haugen - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T05:13:07Zhttp://stackoverflow.com/feeds/user/32050http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1807379/does-a-capital-decimal-use-more-memory-as-a-lowercase-decimal/1807386#18073860Answer by Tor Haugen for Does a capital Decimal use more memory as a lowercase decimalTor Haugen2009-11-27T08:18:45Z2009-11-27T08:18:45Z<p>No. That's just silly.</p>
<p>In C#, decimal is just a synonym for Decimal. The compiler will treat decimal declarations as Decimal, and the compiled code will be as if Decimal was used.</p>
http://stackoverflow.com/questions/782117/sql-putting-two-single-quotes-around-datetime-fields-and-fails-to-insert-record/1804313#18043130Answer by Tor Haugen for SQL putting two single quotes around datetime fields and fails to insert recordTor Haugen2009-11-26T15:27:17Z2009-11-26T15:46:34Z<p>I would look for the problem in your Database class. Perhaps the <code>AddInParameter()</code> method performs some jiggery-pokery with DateTime parameters, like adding a formatted string or something silly like that.</p>
<p>For use with MSSQL, the <code>CreateStoredProc()</code> absolutely should return an instance of <code>SqlCommand</code> (there are other subclasses of DbCommand which you don't want to use). Verify that, then ensure that the <code>AddInParameter()</code> adds an instance of <code>SqlParameter</code> to the Parameters collection, that its <code>DbType</code> property is <code>DbType.DateTime</code> and its <code>Value</code> property is of type <code>System.DateTime</code>.</p>
<p>Once parameters are properly added to a <code>SqlCommand</code>, it should work well with MSSQL stored procedures, also with DateTime data (it has for me, zillions of times).</p>
http://stackoverflow.com/questions/1789646/c-auto-property-is-this-pattern-best-practice/1789669#17896690Answer by Tor Haugen for C# Auto Property - Is this 'pattern' best practice?Tor Haugen2009-11-24T12:09:38Z2009-11-24T12:09:38Z<p>Yeah, that's perfectly normal ;-)</p>
<p>Such lazy creation is not uncommon, and makes good sense. The only caveat is you'll have to be careful if you reference the field at all.</p>
<p>Edit: But I'll have to go with Chris and the others: it's a (much) better pattern to use an auto property and initialize the collection in the constructor.</p>
http://stackoverflow.com/questions/1782927/why-i-cannot-derive-from-long/1783002#17830023Answer by Tor Haugen for Why I cannot derive from long?Tor Haugen2009-11-23T12:55:00Z2009-11-23T12:55:00Z<p>What you can do is write a struct with implicit conversion operators. That will work exactly the way you want:</p>
<pre><code>public struct SubmitOrderResult
{
private long _result;
public SubmitOrderResult(long result)
{
_result = result;
}
public long Result
{
get { return _result; }
set { _result = value; }
}
public int GetHigherValue()
{
return (int)(_result >> 32);
}
public int GetLowerValue()
{
return (int)_result;
}
public static implicit operator SubmitOrderResult(long result)
{
return new SubmitOrderResult(result);
}
public static implicit operator long(SubmitOrderResult result)
{
return result._result;
}
}
</code></pre>
<p>Then you can do:</p>
<pre><code>SubmitOrderResult result = someObject.TheMethod();
Console.WriteLine(result.GetHigherValue());
Console.WriteLine(result.GetLowerValue());
</code></pre>
<p>...just like you wanted.</p>
http://stackoverflow.com/questions/1782910/xbap-can-i-deploy-xbap-without-sigining-in-full-trust/1782938#17829380Answer by Tor Haugen for XBAP Can I deploy XBAP without sigining in full trust???Tor Haugen2009-11-23T12:42:12Z2009-11-23T12:42:12Z<p>Yes. XBAP applications are restricted, and will run in a sandbox. There's no (straightforward) way of running an XBAP with full trust. The upside is that you will not have to sign it.</p>
http://stackoverflow.com/questions/1752964/how-do-i-make-sure-a-file-path-is-safe-in-c/1752975#17529753Answer by Tor Haugen for How do I make sure a file path is safe in C#?Tor Haugen2009-11-18T01:10:12Z2009-11-18T01:10:12Z<p>How about</p>
<pre><code>var fileName = System.IO.Path.GetFileName(userFileName);
var targetPath = System.IO.Path.Combine(userDirectory, fileName);
</code></pre>
<p>That should ensure you get a simple filename only.</p>
http://stackoverflow.com/questions/1713932/left-outer-join-gives-extra-rows-problem/1713970#17139705Answer by Tor Haugen for LEFT OUTER JOIN (gives extra rows) problemTor Haugen2009-11-11T09:12:13Z2009-11-11T09:23:05Z<p>Sorry, but your thinking is skewed.</p>
<p>Think about it this way: if you only want one single row from tb2 for each row in tb1, which one should the server choose? The fact is that from the definition of a join, every row in the right-hand-side table that matches the left-hand-side row is a match and must be included.</p>
<p>You'll have to ensure tbl2 has distinct values for c2 before the join. Murph's suggestion might do it, provided your SQL variant supports DISTINCT [column] (not all do).</p>
http://stackoverflow.com/questions/1680514/what-is-the-difference-between-a-character-array-and-string/1680570#16805704Answer by Tor Haugen for What is the difference between a character array and string?Tor Haugen2009-11-05T13:25:37Z2009-11-05T13:25:37Z<p>Well, a string is a class which encapsulates behavior suitable for strings, such as Substring, Trim etc. The actual data is stored internally as a character array (at least in Java and C#), so there is a close connection between them, but the class itself represents more than just the characters.</p>
<p>There's more to it, in fact, such as internalization, but that's the gist of it.</p>
http://stackoverflow.com/questions/1673382/class-design-access-a-listt-directly-or-through-methods/1673455#16734557Answer by Tor Haugen for Class design: Access a List<T> directly or through methods?Tor Haugen2009-11-04T12:22:39Z2009-11-04T12:22:39Z<p>I would explose a read-only view of the list as IList or IEnumerable, and methods for adding and removing elements. Like this:</p>
<pre><code>public class News
{
private _images List<Images>();
public IList<Image> Images
{
get {return _images.AsReadOnly(); }
}
public void AddImage(Image image)
{
_images.Add(image);
// Do other stuff...
}
public void DeleteImage(Image image)
{
_images.Remove(image);
// Do other stuff...
}
}
</code></pre>
http://stackoverflow.com/questions/1661489/how-to-check-for-valid-value-before-converting-decimal/1661501#16615011Answer by Tor Haugen for How to check for valid value before converting DecimalTor Haugen2009-11-02T14:05:41Z2009-11-02T14:05:41Z<p>Decimals are value types, and so cannot be null.</p>
<p>So no need to check there..</p>
http://stackoverflow.com/questions/1624062/change-div-id-using-jquery/1624083#16240832Answer by Tor Haugen for change div id using jqueryTor Haugen2009-10-26T10:31:16Z2009-10-26T10:31:16Z<p>Are you sure you want to do that?</p>
<p>Keep in mind the meaning of 'identity'. The ID of an element is meant to be a unique identifier, not just any old attribute.</p>
<p>If you find yourself in a position where you need to change the ID, perhaps your thinking is skewed somehow. It smells ;-)</p>
http://stackoverflow.com/questions/1594274/do-wpf-hyperlinks-only-work-in-pages4Do WPF hyperlinks only work in pages?Tor Haugen2009-10-20T12:31:52Z2009-10-20T12:40:00Z
<p>Hi</p>
<p>I'm new to the Hyperlink control. I wish to have a hyperlink in a regular WPF window which will navigate to a URL by opening the standard browser. I have added the hyperlink, but it does nothing. I guess it was a bit much to hope for.</p>
<p>Before I implement a handler to do the work myself, can anyone please confirm that the Hyperlink control will navigate only within pages?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1576843/is-it-good-practise-to-have-multiple-class-definitions-in-one-file/1576897#15768971Answer by Tor Haugen for Is it good practise to have multiple class definitions in one file?Tor Haugen2009-10-16T08:44:20Z2009-10-16T08:44:20Z<p>I guess you ask because you've noticed already that it's considered best practice. Given the obvious benefits (and some less obvious ones mentioned here), why would you want to do it differently? Are there any benefits at all in multiple classes per file? I can't think of any.</p>
http://stackoverflow.com/questions/1576817/mvp-mvvm-filtering-of-lists-who-has-responsibility/1576854#15768542Answer by Tor Haugen for MVP/MVVM - Filtering of lists, who has responsibility?Tor Haugen2009-10-16T08:37:51Z2009-10-16T08:37:51Z<p>I think this kind of filtering functionality belongs in the viewmodel. Remember, you want to keep as much testable code as possible in the viewmodel (which you will unit-test, right?). Conversely, you'll want to keep the view lean and mean.</p>
<p>The filtering functionality is generic, and not bound to the view as such. But if a different view should need different filtering, you should see that as additional functionality supported by the viewmodel.</p>
http://stackoverflow.com/questions/1566463/cannot-databind-dependencyproperty1Cannot databind DependencyPropertyTor Haugen2009-10-14T14:06:40Z2009-10-16T08:35:29Z
<p>Hi all</p>
<p>I have a UserControl with a DependencyProperty. I set it's value in the host window using a data binding expression. However, it doesn't work as expected.</p>
<p>Snippet from the user control's codebehind:</p>
<pre><code>public class ViewBase : UserControl
{
public static readonly DependencyProperty ViewModelProperty
= DependencyProperty.Register(
"ViewModel", typeof(ViewModelBase), typeof(ViewBase));
public ViewModelBase ViewModel
{
get { return GetValue(ViewModelProperty) as ViewModelBase; }
set
{
SetValue(ViewModelProperty, value);
}
}
}
</code></pre>
<p>And from the XAML (note: CasingListView inherits from ViewBase):</p>
<pre><code><CasingEditor:CasingListView x:Name="_casingListView"
ViewModel="{Binding CasingListViewModel}" />
</code></pre>
<p>What happens is nothing. Specifically, the setter is never called, and the property remains null. I know the source property <code>CasingListViewModel</code> has a value, because I have tried to bind it to another property (DataContext), and it worked fine.</p>
<p>I thought a dependency property could be databound. Am I wrong?</p>
http://stackoverflow.com/questions/1566463/cannot-databind-dependencyproperty/1566834#15668343Answer by Tor Haugen for Cannot databind DependencyPropertyTor Haugen2009-10-14T14:53:48Z2009-10-16T08:35:29Z<p>Hi again.</p>
<p>As sometimes happens, the problem turned out to be not quite what we thought.</p>
<p>I mentioned that the setter was never called. That is true. The code above is slightly trimmed to make it clearer. Unfortunately, I also trimmed away a statement in the setter, following the call to SetValue. That statement assigned the value to DataContext, something like this:</p>
<pre><code>public ViewModelBase ViewModel
{
get { return GetValue(ViewModelProperty) as ViewModelBase; }
set
{
SetValue(ViewModelProperty, value);
DataContext = value;
}
}
</code></pre>
<p>As I have now learned from <a href="http://www.switchonthecode.com/tutorials/wpf-tutorial-introduction-to-dependency-properties" rel="nofollow">this excellent article</a>, the <strong>setter is in fact bypassed</strong> when the property is set via databinding. The framework instead works directly against the DependencyObject. So the property was actually set, but the setter was never called (as I mentioned), and the consequence was that DataContext remained null and nothing worked.</p>
<p>So: First I apologize profusely for asking an unanswerable question. Second, as a way of making up for it, I can pass on the very important piece of advice:</p>
<blockquote>
<p>Never put anything but GetValue() and SetValue() inside the property getter/setter, because they are not always called!</p>
</blockquote>
<p><strong>Edit:</strong> Later, I've also discovered another problem with this approach. By setting the DataContext this way, I actually lose the original data context that supports the binding in the first place. The result is that the property is immediately reset to null. So all in all not a good approach overall.</p>
http://stackoverflow.com/questions/1554562/automatic-checkout-with-tfs/1554624#15546240Answer by Tor Haugen for Automatic Checkout with TFSTor Haugen2009-10-12T13:35:41Z2009-10-12T13:35:41Z<p>TFS is of course able to automatically check out as soon as you start editing the file.</p>
<p>The option is under Source Control -> Environment -> Checked-in items</p>
<p>You should choose Editing: <strong>Check out automatically</strong> in the drop-down list.</p>
http://stackoverflow.com/questions/1537499/shared-business-rules-for-c-and-java-objects/1537564#15375644Answer by Tor Haugen for Shared Business Rules for c# and Java objectsTor Haugen2009-10-08T12:43:29Z2009-10-08T12:43:29Z<p>This may sound terrible at first, but you could in fact consider coding the business rules in javascript.</p>
<p>There are javascript engines available both on the java and .NET platform. That way, by hosting a (different) javascript engine both on the server (java) and client (C#), they can both execute the same javascript to enforce business rules.</p>
<p>Think of it as your business rules language of choice. It's not a bad choice for the task either, as it is terse, flexible and well known.</p>
<p>I have done something similar once, to set up flexible game rules in a java-based game. Javascript engines are surprisingly simple to set up, and nowadays they're getting pretty fast too.</p>
http://stackoverflow.com/questions/1536930/get-submit-button-id/1536958#15369580Answer by Tor Haugen for get submit button id Tor Haugen2009-10-08T10:30:39Z2009-10-08T11:11:44Z<p>The <code>sender</code> argument to the handler contains a reference to the control which raised the event.</p>
<pre><code>private void MyClickEventHandler(object sender, EventArgs e)
{
Button theButton = (Button)sender;
...
}
</code></pre>
<p><strong>Edit:</strong> Wait, in the Load event? That's a little tricker. One thing I can think of is this: The Request's Form collection will contain a key/value for the submitting button, but not for the others. So you can do something like:</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
Button theButton = null;
if (Request.Form.AllKeys.Contains("button1"))
theButton = button1;
else if (Request.Form.AllKeys.Contains("button2"))
theButton = button2;
...
}
</code></pre>
<p>Not very elegant, but you get the idea..</p>
http://stackoverflow.com/questions/1513778/is-it-a-bad-idea-to-jump-into-linq-to-sql-now/1513796#151379610Answer by Tor Haugen for Is it a bad idea to jump into LINQ to SQL now?Tor Haugen2009-10-03T13:48:48Z2009-10-03T13:54:35Z<p>LINQ to Entities is ready for primetime, and not necessarily much steeper to learn. However, LINQ to SQL is fine too, you'll learn a lot that will stay useful as you move forward.</p>
<p>In short, choose whatever suits the project best. If SQL Server is and will remain the DB platform, and if there's no need for remapping tables or other sophisticated tricks, LINQ to SQL will get you there very fast. It's also very efficient.</p>
http://stackoverflow.com/questions/1513739/software-to-group-c-class-members/1513767#15137676Answer by Tor Haugen for Software to group c# class membersTor Haugen2009-10-03T13:34:26Z2009-10-03T13:34:26Z<p><a href="http://www.jetbrains.com/resharper/" rel="nofollow">Resharper</a> does that, amongst loads of other things.</p>
http://stackoverflow.com/questions/1513725/how-do-i-insert-information-in-a-sql-table-if-the-table-has-a-foreign-key-in-it/1513747#15137471Answer by Tor Haugen for How do I insert information in a SQL table if the table has a foreign key in it?Tor Haugen2009-10-03T13:28:25Z2009-10-03T13:28:25Z<p>You should insert the primary key of the Career table, ie. the value for IDCareer.</p>
<p>The natural thing to do is to populate the Combo box with values from the Career table - display the values from the CareerName column, but keep the values from the IDCareer column. When the user chooses a career, grab the IDCareer value (probably an integer), then save that to the User table.</p>
<p>Adding new careers to the Career table is usually a different activity, to be done in another form.</p>
http://stackoverflow.com/questions/1499390/using-sql-server-designers-from-net0Using SQL Server Designers from .NETTor Haugen2009-09-30T16:53:47Z2009-09-30T17:10:54Z
<p>Hi all</p>
<p>This is a <a href="http://stackoverflow.com/questions/853162/how-to-call-sql-server-management-studios-query-designer-from-c-application">duplicate question</a>, but the other one didn't get any answers, so I'll have another go.</p>
<p>I have SQL Server 2008 Client Tools installed, and would like to use SQL Server's query designer(s) in my application, for working with queries, views, SPs and functions. I'm pretty sure Access ADP does this, can I?</p>
<p>I guess what I am hoping for is that these designers are COM objects which I can use via p/invoke.</p>
http://stackoverflow.com/questions/1477297/can-i-use-text-box-names-as-values-in-a-list/1477331#14773311Answer by Tor Haugen for Can i use text box names as values in a list?Tor Haugen2009-09-25T13:37:07Z2009-09-25T13:46:47Z<p>Try:</p>
<pre><code>int[] verdierX = new int[8];
private void Form1_Load(object sender, EventArgs e)
{
for (var i = 0; i < 8; i++)
{
TextBox tb = (TextBox)FindControl("box" + i.ToString());
verdierX[i] = (int)decimal.Parse(tb.Text);
}
}
</code></pre>
http://stackoverflow.com/questions/1453896/how-to-identify-the-keyboard-keys-using-c/1453962#14539628Answer by Tor Haugen for How to identify the keyboard keys using C#Tor Haugen2009-09-21T10:55:20Z2009-09-25T13:04:25Z<p>Easy. Make an event handler for the </p>
<pre><code>Microsoft.Win32.SystemEvents.SessionSwitch
</code></pre>
<p>event. In it, check the <code>SessionSwitchEventArgs.Reason</code> property for the value <code>SessionSwitchReason.SessionLock</code>.</p>
<p><strong>Shyam</strong>: sorry for not coming back to you right away. You shouldn't have to include any special DLLs. The <code>SystemEvents</code> class is in the System assembly. Whether this handler belongs in the business layer - I guess it belongs in whatever project contains your service class - the one that inherits from WindowsService.</p>
<pre><code>public MyService()
{
InitializeComponent();
SystemEvents.SessionSwitch += SystemEvents_SessionSwitch;
}
void SystemEvents_SessionSwitch(object sender, SessionSwitchEventArgs e)
{
if (_isRunning)
{
// Pause
}
}
</code></pre>
http://stackoverflow.com/questions/1471836/how-to-capture-the-video-from-webcam-in-asp-net-c/1471885#14718852Answer by Tor Haugen for How to capture the video from webcam in asp.net,C#Tor Haugen2009-09-24T14:01:19Z2009-09-24T14:15:50Z<p>You want to use <a href="http://msdn.microsoft.com/en-us/library/dd375454%28VS.85%29.aspx" rel="nofollow">DirectShow</a>. Check out <a href="http://directshownet.sourceforge.net/" rel="nofollow">DirectShow.NET</a> at SourceForge.</p>
<p>If you're working on Vista, you should check out the future platform: <a href="http://msdn.microsoft.com/en-us/library/ms694197%28VS.85%29.aspx" rel="nofollow">Microsoft Media Foundation</a>, which also has a <a href="http://mfnet.sourceforge.net/" rel="nofollow">.NET library</a> at SourceForge.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/1466370/please-advise-on-handling-the-existing-geek/1466435#14664354Answer by Tor Haugen for Please advise on handling the existing geekTor Haugen2009-09-23T14:40:20Z2009-09-23T14:40:20Z<p>You shouldn't be too afraid of offending the geek.</p>
<p>The way I understand your question, you feel a need to point out when he gives bad advice. I can see how you're uncomfortable with this, but in the long run, you'll be more uncomfortable if you don't speak up. Just make sure you have your facts ready, so nobody can accuse you of jealousy.</p>
<p>If you want to be a diplomat and avoid unnecessary gripe, try to identify areas where he is actually strong (most know <strong>something</strong> well), and make sure you ask him for advice now and then. In time, this should give you some room for criticism.</p>
http://stackoverflow.com/questions/1466326/net-app-which-has-initial-windowstate-minimized-but-shows-up-in-the-taskmgr/1466351#14663513Answer by Tor Haugen for .NET App which has initial WindowState == Minimized, but shows up in the taskmgr->applications tab on Vista/Windows7 but NOT on WinXPTor Haugen2009-09-23T14:27:32Z2009-09-23T14:27:32Z<p>Have you tried to set Form.ShowInTaskBar = false?</p>
http://stackoverflow.com/questions/1453948/reading-numbers-from-string-in-c/1454054#14540541Answer by Tor Haugen for Reading numbers from string in C#Tor Haugen2009-09-21T11:30:16Z2009-09-21T11:30:16Z<p>You should consider always fetching the RSS using the same culture. That way, you'll have an easier task parsing the content. If you'll only be using the numbers, it shouldn't stop you from emitting culture-specific content to the end user.</p>
<p>So if you go for the en-US version, you could do it like this:</p>
<pre><code>Regex re = new Regex(@"Lo: (\d+)°F. Hi: (\d+)°F. Chance of precipitation: (\d+)%");
var match = re.Match(forecast);
if (match.Success)
{
var groups = match.Groups;
lo = int.Parse(groups[1].Captures[0].Value);
hi = int.Parse(groups[2].Captures[0].Value);
prec = int.Parse(groups[3].Captures[0].Value);
}
</code></pre>
http://stackoverflow.com/questions/1453585/load-pdf-document-in-webbrowser-using-documentstream/1453659#14536590Answer by Tor Haugen for Load PDF Document in WebBrowser using DocumentStreamTor Haugen2009-09-21T09:42:34Z2009-09-21T09:42:34Z<p>I have looked into this, and it seems that setting the DocumentStream does this:</p>
<ol>
<li>Load about:blank</li>
<li>On the resulting (empty) HTML DOM, call Load, passing the stream</li>
</ol>
<p>It would appear that the result is that anything supplied in the stream will be interpreted as a HTML document.</p>
<p>I would look into some other solution.</p>
http://stackoverflow.com/questions/1807381/how-to-write-serverside-validations-in-java-for-unique-fieldComment by Tor Haugen on how to write serverside validations in java for unique fieldTor Haugen2009-11-27T08:21:26Z2009-11-27T08:21:26ZIf you want urgent help, it's a good idea to actually ask a question!http://stackoverflow.com/questions/1801264/centralised-settings-in-c-for-multiple-programs/1804171#1804171Comment by Tor Haugen on Centralised settings in C# for multiple programsTor Haugen2009-11-26T15:58:23Z2009-11-26T15:58:23ZThe different apps would still have separate working directories and config files, so the problem with locating the settings will remain.http://stackoverflow.com/questions/782117/sql-putting-two-single-quotes-around-datetime-fields-and-fails-to-insert-record/782129#782129Comment by Tor Haugen on SQL putting two single quotes around datetime fields and fails to insert recordTor Haugen2009-11-26T15:21:18Z2009-11-26T15:21:18ZHm. Did you actually read the question?http://stackoverflow.com/questions/1782927/why-i-cannot-derive-from-long/1782940#1782940Comment by Tor Haugen on Why I cannot derive from long?Tor Haugen2009-11-23T13:51:07Z2009-11-23T13:51:07ZWell, a downside of this approach is that the extension methods will show up in intellisense for every long, whether appropriate or not.http://stackoverflow.com/questions/1782927/why-i-cannot-derive-from-long/1782981#1782981Comment by Tor Haugen on Why I cannot derive from long?Tor Haugen2009-11-23T13:00:44Z2009-11-23T13:00:44ZMy guess is it's not actually 'his' function, because then he wouldn't have this problem. Perhaps it's an extern, or at least some class library out of his control.http://stackoverflow.com/questions/1703394/how-can-i-load-an-swf-from-a-c-embeddedresource-without-first-writing-to-file/1735477#1735477Comment by Tor Haugen on How can I load an SWF from a C# EmbeddedResource without first writing to file?Tor Haugen2009-11-18T00:51:14Z2009-11-18T00:51:14ZYou won't have to set up a full webserver, just a tcp listener which will respond with a simple, predefined header and the swf content. But you'll need a free TCP port, and a background worker. I guess there's some potential for trouble, but it's not rocket science.http://stackoverflow.com/questions/1713932/left-outer-join-gives-extra-rows-problem/1713955#1713955Comment by Tor Haugen on LEFT OUTER JOIN (gives extra rows) problemTor Haugen2009-11-11T09:18:46Z2009-11-11T09:18:46ZThat would work in this simplified case, but I'm pretty sure in reality his rhs table has more columns - and then distinct won't help.http://stackoverflow.com/questions/302047/what-is-difference-between-and-and-andalso-in-vb-net/302080#302080Comment by Tor Haugen on What is difference between And and Andalso in VB.net ?Tor Haugen2009-11-11T09:01:12Z2009-11-11T09:01:12ZFirst, Andalso is not primarily used to 'save on runtime', that's preposterous. Second, having the second argument perform some useful 'side effect' is ugly-ass bad practice.http://stackoverflow.com/questions/1673382/class-design-access-a-listt-directly-or-through-methods/1673455#1673455Comment by Tor Haugen on Class design: Access a List<T> directly or through methods?Tor Haugen2009-11-04T13:16:24Z2009-11-04T13:16:24Z@Matt: Notice I did say at the top "as IList or IEnumerable". Surely IEnumerable<T> is general enough.http://stackoverflow.com/questions/1673382/class-design-access-a-listt-directly-or-through-methods/1673455#1673455Comment by Tor Haugen on Class design: Access a List<T> directly or through methods?Tor Haugen2009-11-04T12:32:03Z2009-11-04T12:32:03ZIt did ;-) I fixed it.http://stackoverflow.com/questions/1661952/problem-escaping-string/1662009#1662009Comment by Tor Haugen on Problem escaping stringTor Haugen2009-11-02T15:39:30Z2009-11-02T15:39:30ZHe said GetRoot() returns a string. So the ToString() is pointless.http://stackoverflow.com/questions/1661952/problem-escaping-stringComment by Tor Haugen on Problem escaping stringTor Haugen2009-11-02T15:34:48Z2009-11-02T15:34:48ZWhat do you get?http://stackoverflow.com/questions/1661818/create-pitch-changing-codeComment by Tor Haugen on Create pitch changing code?Tor Haugen2009-11-02T15:10:24Z2009-11-02T15:10:24ZUnless you wonder how to create an app to do that, the question probably belongs on superuser.com.http://stackoverflow.com/questions/1661733/how-does-javascript-memory-work-in-browsersComment by Tor Haugen on How does JavaScript memory work in browsers?Tor Haugen2009-11-02T15:07:31Z2009-11-02T15:07:31ZWhat exactly do you mean by "cached and not kept in memory"? That doesn't make any sense to me.http://stackoverflow.com/questions/1627225/c-check-object-array-for-duplicates/1627239#1627239Comment by Tor Haugen on C# Check Object Array For DuplicatesTor Haugen2009-10-26T20:55:12Z2009-10-26T20:55:12ZBad practice to use exceptions for process flow!