User technophile - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T16:13:07Z http://stackoverflow.com/feeds/user/23029 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1425159/algorithm-for-auto-appending-a-unique-id-to-duplicate-titles/1615906#1615906 0 Answer by technophile for Algorithm for Auto-Appending a Unique ID to Duplicate Titles technophile 2009-10-23T21:09:05Z 2009-10-23T21:09:05Z <pre>declare &#0064;name nvarchar(40) declare &#0064;suffix int declare &#0064;currentName nvarchar(50) set &#0064;name = 'My Document' set &#0064;suffix = 1 set &#0064;currentName = &#0064;name while exists (select 1 from [table] where [name] = &#0064;currentName) begin set &#0064;currentName = &#0064;name + ' ' + cast(&#0064;suffix as nvarchar(10)) set &#0064;suffix = &#0064;suffix + 1 end</pre> <p>&#0064;name will end up being "My Document 142" (if there are 141 other copies). Note that if you delete a copy in the middle (say, copy 76), the next copy will "fill in" that hole and be called My Document 76.</p> <p>This is T-SQL.</p> http://stackoverflow.com/questions/1615793/dynamic-typing-of-foreach-variable/1615825#1615825 1 Answer by technophile for Dynamic typing of foreach variable. technophile 2009-10-23T20:52:56Z 2009-10-23T20:52:56Z <p>If you only reference values available on the supertype (Control) inside the foreach, then just declare it as Control.</p> <p>If you have type-specific logic, you'll still need to declare it as Control, but then figure out which type you're dealing with in each iteration and use casts and conditional logic.</p> <p>One way to do that is to refactor the body of the foreach into a set of methods (i.e. Update(Button), Update(KryptonTextBox)) and just call Update(c).</p> http://stackoverflow.com/questions/1614508/migrating-asp-net-website-from-iis6-to-iis7-debugging-differences/1614607#1614607 1 Answer by technophile for Migrating asp.net website from IIS6 to IIS7 - Debugging differences technophile 2009-10-23T16:38:41Z 2009-10-23T16:38:41Z <p>For #1, you need to turn off the "Ping Enabled" setting in the Advanced Properties for the application pool. Otherwise, if you sit on a breakpoint, the process can't respond to IIS's ping and it believes the process is hung and recycles the app pool. You probably want to turn off the idle timeout as well.</p> <p>For #2, I'm not sure; even with Rick's answer it sounds like it should be working as you intend.</p> http://stackoverflow.com/questions/1608803/is-it-ok-to-use-ticks-to-pass-datetime-using-ticks-between-pages-of-an-applicatio/1608849#1608849 0 Answer by technophile for Is it ok to use ticks to pass datetime using ticks between pages of an application technophile 2009-10-22T17:47:15Z 2009-10-22T17:47:15Z <p>Given that Ticks is defined as the number of 100-nanosecond intervals that have passed since 12 midnight, January 1, 0001, I can't see there being any functional issues, as long as you either convert to UTC before passing (and from UTC after) or otherwise deal with timezone issues.</p> <p>That said, there are more human-friendly ways to pass the information, for example passing it as yyyyMMddThhmmss.nnn will be more friendly if anyone wants to manually enter the URL, although it's not quite as precise (if you need better than millisecond precision).</p> http://stackoverflow.com/questions/1399408/custom-build-task-how-to-write-output-to-the-build-log-file/1540046#1540046 1 Answer by technophile for Custom build task: how to write output to the build log file technophile 2009-10-08T19:53:44Z 2009-10-08T19:53:44Z <p>Assuming you did the smart thing and inherited from Microsoft.Build.Utilities.Task, you can simply call Log.Log[Message|Warning|Error] to log with the appropriate level.</p> <p>Alternately, you can use the BuildEngine you're given (in the ITask.BuildEngine property) to call the Log[X]Event methods.</p> http://stackoverflow.com/questions/1531563/tfs-changeset-history-using-queryhistory-after-branch-rename/1539421#1539421 0 Answer by technophile for TFS Changeset history using QueryHistory after branch rename technophile 2009-10-08T17:45:07Z 2009-10-08T17:45:07Z <p>I believe you need to pass the <code>slotMode</code> parameter as <code>false</code>; that instructs TFS that you want the history for the item that currently occupies that slot, even if it did not always do so (passing it as true gives you the history of that slot).</p> <p>See <a href="http://msdn.microsoft.com/en-us/library/bb138961.aspx" rel="nofollow">the docs</a> for more information.</p> http://stackoverflow.com/questions/1535134/msbuild-tfs-build-number/1535145#1535145 1 Answer by technophile for MSBuild TFS Build Number technophile 2009-10-08T01:30:05Z 2009-10-08T01:30:05Z <p>Assuming you mean Team Build, the $(BuildNumber) property contains the current build number.</p> <p>See <a href="http://blogs.msdn.com/aaronhallberg/archive/2008/02/12/team-build-2008-property-reference.aspx" rel="nofollow">http://blogs.msdn.com/aaronhallberg/archive/2008/02/12/team-build-2008-property-reference.aspx</a> for a full reference of available properties.</p> <p>If you're just running MSBuild, I don't believe it generates/applies an overall build number (each project will have an individual, possibly auto-incremented, version number in its AssemblyInfo.cs [by default] file). You can dynamically get this version number for a specific assembly using the System.Reflection.Assembly class at runtime.</p> http://stackoverflow.com/questions/1504820/setting-membership-store-passwords/1504921#1504921 1 Answer by technophile for Setting Membership Store Passwords technophile 2009-10-01T16:10:42Z 2009-10-01T16:10:42Z <p>I've used a variant of #1 in a live application. It worked great, users never noticed the change as far as I was aware.</p> <p>A couple of refinements: </p> <ul> <li>You don't need to prompt them to update their password; they provided you the cleartext to log in (and you know it's the correct cleartext since it hashed correctly), so just go ahead and set that as their password.</li> <li>Make sure you clear the legacy password hash if they use the password reset functionality.</li> </ul> <p>I would under no circumstances use option 2; it's wildly insecure.</p> <p>One other thing -- it is possible to set a password without knowing their current one, it just requires two steps.</p> <ol> <li>Reset the user's password. You now know the reset password.</li> <li>Use the newly reset password to set the password to a known value.</li> </ol> http://stackoverflow.com/questions/1242266/converting-bytes-to-gb-in-c/1242331#1242331 3 Answer by technophile for Converting bytes to GB in C#? technophile 2009-08-07T00:50:58Z 2009-08-08T13:22:22Z <p>The original code is succinct, easy to read, and with reasonable variable names, self-documenting; I wouldn't change it.</p> <p>If you absolutely must refactor, you could create a set of extension methods on the numeric types:</p> <pre><code>public static double BytesToKilobytes(this Int32 bytes) { return bytes / 1024d; } public static double BytesToMegabytes(this Int32 bytes) { return bytes / 1024d / 1024d; } public static double KilobytesToBytes(this double kilobytes) { return kilobytes * 1024d; } //You can then do something like: double filesize = 32.5d; double bytes = filesize.KilobytesToBytes(); </code></pre> <p>But unless your code does virtually nothing but convert bytes to kilobytes etc, all this will really do is clutter up Intellisense for no real gain.</p> http://stackoverflow.com/questions/1148976/order-of-catch-clauses/1148998#1148998 5 Answer by technophile for Order of catch clauses technophile 2009-07-19T00:51:21Z 2009-07-19T00:51:21Z <p>The order is irrelevant unless one of the exceptions named in a catch handler inherits from another exception named in another handler, in which case the more-derived catch should come first (or it will never be called).</p> <p>The runtime will go through the catch blocks in the order they are listed, executing <strong>only</strong> the first one that matches, so if you have the following, only the first catch block will be executed, even if an ArgumentException is thrown:</p> <pre><code>try { throw new ArgumentException("foo"); } catch (Exception ex) { } catch (ArgumentException aex) { // Will never be executed. } </code></pre> http://stackoverflow.com/questions/1111258/can-a-textnode-have-a-childnode-which-is-an-elementnode/1111269#1111269 3 Answer by technophile for can a textNode have a childNode which is an elementNode ? technophile 2009-07-10T18:41:05Z 2009-07-10T18:47:10Z <p>I don't think so; I'm fairly certain that something like</p> <pre><code>&lt;div&gt;this is some &lt;a href="..."&gt;text&lt;/a&gt; with an element inside it.&lt;/div&gt; </code></pre> <p>ends up being:</p> <pre><code>&lt;div&gt; &lt;textnode/&gt; &lt;a&gt; &lt;textnode/&gt; &lt;/a&gt; &lt;textnode/&gt; &lt;/div&gt; </code></pre> <p>I don't believe textNodes can have children.</p> <p>If I had to guess, I'd think that the result of adding a child node to a text node would be to add the element to the text node's parent instead, but I've not tested that at all.</p> http://stackoverflow.com/questions/1088932/asp-net-server-control-postback/1089003#1089003 3 Answer by technophile for Asp.NET Server Control Postback technophile 2009-07-06T20:14:45Z 2009-07-07T18:13:18Z <p>Override the CreateChildControls method and create/add the button (and register the handler) in that method.</p> <p>Using OnInit/OnLoad to create controls like this is incorrect and will lead to inconsistent behavior (such as what you're experiencing).</p> <p>Edit: You might also try setting button.ID so that it's the same on every postback, it's possible the raised event isn't seeing it for that reason.</p> http://stackoverflow.com/questions/1088950/itemgroup-item-scope-alternatively-why-does-msbuild-hate-me/1089020#1089020 3 Answer by technophile for ItemGroup Item scope, alternatively "Why does MSBuild hate me?" technophile 2009-07-06T20:17:16Z 2009-07-06T20:17:16Z <p>Have you tried using DependsOnTarget rather than CallTarget? It could be that CallTarget is causing the scope issue.</p> http://stackoverflow.com/questions/898633/why-does-visual-studio-net-2008-lose-debug-ability-after-adding-global-asax-file/946503#946503 1 Answer by technophile for Why does visual studio .net 2008 lose debug ability after adding global.asax file? technophile 2009-06-03T18:55:14Z 2009-06-03T18:55:14Z <p>Post the entire contents of global.asax and global.asax.cs (if it exists). My guess is that the Application directive at the top of global.asax has a compiler directive or something in it that's causing the behavior (for example, /debug- or /debug:pdbonly could cause this behavior).</p> http://stackoverflow.com/questions/804735/safe-version-of-path-combine/804766#804766 4 Answer by technophile for Safe version of Path.Combine technophile 2009-04-29T23:31:06Z 2009-04-30T00:08:53Z <p><a href="http://msdn.microsoft.com/en-us/library/system.io.path.getfullpath.aspx" rel="nofollow">System.IO.Path.GetFullPath</a>?</p> <p>To expand: use Path.Combine, then call GetFullPath on the result and check that that result starts with rootPath.</p> <p>It won't protect you against hardlinks, but it should catch simple things like double-dots.</p> <p>the above as code:</p> <pre><code>string Resolve(string fileName) { string root = FileRoot(); string ret = Path.GetFullPath(Path.Combine(root, fileName)); if (ret.StartsWith(root.TrimEnd(Path.DirectorySeparatorChar) + Path.DirectorySeparatorChar)) return ret; throw new ArgumentException("path resolved to out of accesable directroy"); } </code></pre> http://stackoverflow.com/questions/414626/will-t-sql-set-parameters-be-reset-with-pooled-net-connections/415153#415153 2 Answer by technophile for Will T-Sql SET parameters be reset with pooled .NET connections? technophile 2009-01-06T01:53:19Z 2009-01-06T01:53:19Z <p>By default (that is, unless you include "Connection Reset=false" in the connection string), .NET resets the connection with the <code>sp_reset_connection</code> stored procedure before reusing it; among other things it undoes any SET commands that have been issued since the connection was opened.</p> <p>See <a href="http://www.sqldev.net/misc/sp_reset_connection.htm" rel="nofollow">this article</a> for more details.</p> http://stackoverflow.com/questions/375248/a-clean-way-of-generating-querystring-parameters-for-web-requests/375304#375304 2 Answer by technophile for A clean way of generating QueryString parameters for web requests technophile 2008-12-17T17:18:44Z 2008-12-17T17:18:44Z <p>Use HttpUtility.ParseQueryString, as someone suggested (and then deleted).</p> <p>This will work, because the return value from that method is actually an HttpValueCollection, which inherits NameValueCollection (and is internal, you can't reference it directly). You can then set the names/values in the collection normally (including add/remove), and call ToString -- which will produce the finished querystring, because HttpValueCollection overrides ToString to reproduce an actual query string.</p> http://stackoverflow.com/questions/365442/is-there-a-simple-extendable-data-class-for-asp-net/365483#365483 0 Answer by technophile for Is there a simple & extendable Data Class for ASP.NET? technophile 2008-12-13T17:45:10Z 2008-12-13T17:45:10Z <p>Your question is too vague. What do you mean by "data class"? What do you want/need it to do for you?</p> <p>Are you looking for something like DataContract?</p> http://stackoverflow.com/questions/365354/are-event-callbacks-with-object-eventargs-parameters-a-holdover-from-1-1-and-w/365479#365479 0 Answer by technophile for Are event callbacks with (object, EventArgs) parameters a holdover from 1.1 and WinForms? technophile 2008-12-13T17:43:32Z 2008-12-13T17:43:32Z <p>I don't think FxCop has been updated in a good long while now; have you tried it with the VS2008 Code Analysis tools (the successor to FxCop)?</p> http://stackoverflow.com/questions/350499/datacontractserializer-handling-objects-whose-type-you-dont-know-and-dont-have 0 DataContractSerializer: Handling objects whose type you don't know and don't have access to. technophile 2008-12-08T19:03:21Z 2008-12-08T19:03:21Z <p>I have a class (call it Container) which is serialized and deserialized using the DataContractSerializer. The class contains a collection of other classes, all of which inherit the same base class (call it ContentsBase), but which have distinct derived classes. The application may be passed a serialized Container object which contains ContentsBase-derived objects <strong>whose implementation I do not know or have access to</strong> -- that is, the compiled code <strong>is not</strong> available locally. I need to deserialize this object by "ignoring" the types I don't know about (I don't need to round-trip them).</p> <p>Is there any way I can do this, short of taking the serialized XML and writing some custom code to grovel through it and remove unknown elements before deserialization, or is that my only option?</p> http://stackoverflow.com/questions/332697/asp-net-application-exhibits-strange-behaviour-through-firewall/333064#333064 2 Answer by technophile for ASP.NET application exhibits strange behaviour through firewall technophile 2008-12-02T04:36:00Z 2008-12-02T04:36:00Z <p>If they're at all tech-savvy, I would have them download Fiddler or something similar, capture the entire HTTP session, and then send you the saved session. Maybe something in there will stick out.</p> <p>Meanwhile, see if you can get an install of ISA Server (an evaluation install, if you have to, or one from MSDN if you have or know anyone with a sub) and see if you can replicate it locally.</p> http://stackoverflow.com/questions/331345/ienumerable-except-wont-work-so-what-do-i-do/331454#331454 0 Answer by technophile for IEnumerable.Except wont work, so what do I do? technophile 2008-12-01T17:00:02Z 2008-12-01T17:00:02Z <p>try this:</p> <pre><code>var userProjects = GetProjects(); return db.Projects.Except(userProjects.ToArray()); </code></pre> <p>The ToArray should force evaluation of the sequence (if I'm understanding the issue right) and allow the operation to succeed.</p> http://stackoverflow.com/questions/329144/how-do-you-specify-stylesheets-for-spcific-media-using-asp-net-themes/329179#329179 1 Answer by technophile for How do you specify stylesheets for spcific media using ASP.NET Themes? technophile 2008-11-30T18:50:13Z 2008-11-30T18:50:13Z <p>You can declare the media type inside the stylesheets. For example, printer.css:</p> <pre><code>@media print { /* Print CSS rules here */ } </code></pre> http://stackoverflow.com/questions/317891/why-does-global-asax-change-sql-connection/318025#318025 0 Answer by technophile for Why does global.asax change sql connection? technophile 2008-11-25T16:38:47Z 2008-11-25T16:38:47Z <p>Check to see if the myapp.Global class accesses either the Membership, Role, or Profile providers; the default settings for each use a local SQL server connection.</p> http://stackoverflow.com/questions/314494/ajaxtoolkittabpanel-would-like-to-set-focus-on-a-different-tab/314529#314529 1 Answer by technophile for < ajaxToolkit:TabPanel - would like to set "focus" on a different tab technophile 2008-11-24T15:46:16Z 2008-11-24T15:46:16Z <p>Set the TabPanel's ActiveTabIndex to 1 in your Page.Load handler:</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) TabPanel1.ActiveTabIndex = 1; } </code></pre> <p>You can also set it in the markup: <code>&lt;aspToolkit:TabPanel ID="TabPanel1" runat="server" ActiveTabIndex="1"&gt;...&lt;/aspToolkit:TabPanel&gt;</code></p> http://stackoverflow.com/questions/306488/finding-the-file-version-of-a-com-dll-using-asp-net 0 Finding the File Version of a COM DLL using ASP.NET technophile 2008-11-20T19:09:53Z 2008-11-20T20:55:59Z <p>I have a software diagnostic page on which I would like to list the File Version information of a couple of COM DLLs. The page is running under the normal, restricted ASP.Net account (NETWORK SERVICE).</p> <p>Given the ProgIDs of a COM library, what's the best way to go about getting the physical file path or otherwise accessing the file version #?</p> <p>Note that loading it via Type.GetTypeFromProgID and using the type's Assembly object won't work, as the Assembly object returned is the one for mscorlib.</p> <p>The install path can be selected by the user and is not guaranteed to be a specific value.</p> http://stackoverflow.com/questions/304249/is-there-an-optimal-byte-size-for-sending-data-over-a-network/304260#304260 6 Answer by technophile for Is there an optimal byte size for sending data over a network? technophile 2008-11-20T03:40:32Z 2008-11-20T03:40:32Z <p>If you can, just let the IP stack handle it; most OSes have a lot of optimization already built in. Vista, for example, will dynamically alter various parameters to maximize throughput; second-guessing the algorithm is unlikely to be beneficial.</p> <p>This is especially true in higher-order languages, far from the actual wire, like C#; there are enough layers between you and actual TCP/IP packets that I would expect your code to have relatively little impact on throughput.</p> <p>At worst, test various message sizes in various situations for yourself; few solutions are one-size-fits-all.</p> http://stackoverflow.com/questions/300181/c-determine-derived-object-type-from-a-base-class-static-method/300186#300186 1 Answer by technophile for C#: Determine derived object type from a base class static method technophile 2008-11-18T21:22:46Z 2008-11-18T21:22:46Z <p>You can't do it without outside information; either the type of the derived class, an instance of it, or the fully-qualified name of the derived class. Any of these are equivalent to what you're already doing; there isn't a better solution I'm aware of. The very nature of static methods precludes anything more elegant.</p> http://stackoverflow.com/questions/299826/file-permission-in-linux-vs-in-windows/299848#299848 10 Answer by technophile for File permission in linux vs. in windows technophile 2008-11-18T19:28:44Z 2008-11-18T19:28:44Z <p>Regarding the USB key: generally, USB keys use one of the FAT family of filesystems; FAT doesn't support security at all, so as soon as you copy the file to it the security information is lost. So for your first question, anyone who has the USB key can read it on any computer from any user account. It is possible to format USB keys using another filesystem (for example, NTFS, which does support security); in that case, if the accounts (in Windows, at least, it must be a domain account or similar, just naming two accounts the same will not do it) do not exist on the target computer, only a user who can ignore filesystem permissions (such as root on *nix or Administrator on Windows) will be able to access the file.</p> <p>For the second, I'm not 100% sure but I believe it depends on how you copy it; things like FTP and rcp generally don't copy permissions over, so I would assume that the file gets some kind of default permissions for the target directory, or a default built into the copy program, depending on what the copy program does.</p> <p>For windows, to the best of my knowledge the security descriptor is initially inherited from the target folder; permissions are, again, not persisted across machines. It can be modified after the copy.</p> <p>In general, except in specific environments that are designed to transfer permissions, I would assume that transferring any file from one computer to another resets the security permissions to a default (generally whatever a <em>new</em> file in that location would receive).</p> http://stackoverflow.com/questions/276212/change-each-record-in-a-table-with-no-primary-key/276225#276225 1 Answer by technophile for Change each record in a table with no primary key? technophile 2008-11-09T18:10:07Z 2008-11-09T18:10:07Z <p>If for some reason you do have to iterate (the other answers cover the situation where you don't), I can think of two ways to do it (these aren't MySQL-specific):</p> <ol> <li><p>Add a column to the table that's an auto-assigned number. Use that as the PK for your updates, then drop the column afterwards (or just keep it around for future use).</p></li> <li><p>In a table with no defined PK, as long as there are no exact duplicate rows, you can use the entire row as a composite PK; just use every column in the row as your distinguishing characteristic. i.e., if the table has 3 columns, "name", "address", and "updated", do the following:</p> <p>UPDATE mytable SET updated = [timestamp value] WHERE name = [name] AND address = [address] AND timestamp = [old timestamp]</p></li> </ol> <p>Many data access frameworks use this exact strategy to implement optimistic concurrency.</p> http://stackoverflow.com/questions/1903950/stored-procedure-where-like-id-or-name/1904002#1904002 Comment by technophile on Stored Procedure WHERE LIKE ID or NAME technophile 2009-12-14T22:51:46Z 2009-12-14T22:51:46Z Not that I'm recommending that. ;) http://stackoverflow.com/questions/1903950/stored-procedure-where-like-id-or-name/1904002#1904002 Comment by technophile on Stored Procedure WHERE LIKE ID or NAME technophile 2009-12-14T22:50:13Z 2009-12-14T22:50:13Z Alternately, using three stored procedures (one for IDs, one for names, and a third that decides which to call) would also resolve the execution plan issue. http://stackoverflow.com/questions/1615793/dynamic-typing-of-foreach-variable/1615828#1615828 Comment by technophile on Dynamic typing of foreach variable. technophile 2009-10-23T21:13:40Z 2009-10-23T21:13:40Z var won't do what you want it to here; the compiler will assign it a single, static type (in this case Control) at compile time. var is syntactic sugar, not a dynamic type. http://stackoverflow.com/questions/1615380/how-can-i-know-the-day-name-from-a-selected-date/1615393#1615393 Comment by technophile on How can I know the day name from a selected date? technophile 2009-10-23T21:00:38Z 2009-10-23T21:00:38Z I wouldn't use the ToString. If you need it for comparisons or storage, just use the enum value. Otherwise, using the dddd format specifier as in Fredrik's answer is better for localization. http://stackoverflow.com/questions/1615380/how-can-i-know-the-day-name-from-a-selected-date/1615436#1615436 Comment by technophile on How can I know the day name from a selected date? technophile 2009-10-23T20:59:19Z 2009-10-23T20:59:19Z +1 for the dddd format answer. http://stackoverflow.com/questions/1615793/dynamic-typing-of-foreach-variable Comment by technophile on Dynamic typing of foreach variable. technophile 2009-10-23T20:56:07Z 2009-10-23T20:56:07Z @Joel You don't know what actual type Button is, so that's hard to say definitively. http://stackoverflow.com/questions/1615793/dynamic-typing-of-foreach-variable/1615818#1615818 Comment by technophile on Dynamic typing of foreach variable. technophile 2009-10-23T20:53:48Z 2009-10-23T20:53:48Z That will end up being functionally identical to &quot;foreach (Control c in controls)&quot;; var isn't a dynamic type, it's just syntactic sugar. http://stackoverflow.com/questions/1555672/specify-configuration-file-when-running-tests-on-tfs-buid-server/1558280#1558280 Comment by technophile on Specify configuration file when running Tests on TFS Buid server technophile 2009-10-13T18:21:47Z 2009-10-13T18:21:47Z You need to put it inside a PropertyGroup, i.e. &lt;PropertyGroup&gt; &lt;RunConfigFile&gt;...&lt;/RunConfigFile&gt; &lt;/PropertyGroup&gt; http://stackoverflow.com/questions/1539799/autocomplete-email-address-and-or-names-in-c Comment by technophile on Autocomplete email address and/or names in C# technophile 2009-10-08T19:57:03Z 2009-10-08T19:57:03Z You need to specify WinForms or ASP.NET; the solutions are very different. http://stackoverflow.com/questions/1538301/c-does-foreach-iterate-by-reference/1538322#1538322 Comment by technophile on C# - Does foreach() iterate by reference? technophile 2009-10-08T14:52:52Z 2009-10-08T14:52:52Z It won't make a difference to the functionality he's interested in. Four copies of the same list will all reference the same actual objects, so whether you modify them from List1 or List3, either will result in the original object being modified. The only thing it will affect is if you add or remove items to/from the list, that wouldn't affect any copies of the list. http://stackoverflow.com/questions/1538301/c-does-foreach-iterate-by-reference/1538316#1538316 Comment by technophile on C# - Does foreach() iterate by reference? technophile 2009-10-08T14:50:39Z 2009-10-08T14:50:39Z This is true even for value types, i.e. structs. http://stackoverflow.com/questions/1535134/msbuild-tfs-build-number/1535145#1535145 Comment by technophile on MSBuild TFS Build Number technophile 2009-10-08T14:48:20Z 2009-10-08T14:48:20Z Ah, yes, that's a good solution for non-team build builds, I'll have to remember that. http://stackoverflow.com/questions/1504820/setting-membership-store-passwords/1504865#1504865 Comment by technophile on Setting Membership Store Passwords technophile 2009-10-01T16:19:16Z 2009-10-01T16:19:16Z Yeah, ASP.NET doesn't give you that much control over how the password is hashed in the default providers; you could do it in a custom membership provider easily enough, though. Interesting solution. http://stackoverflow.com/questions/1148976/order-of-catch-clauses/1148982#1148982 Comment by technophile on Order of catch clauses technophile 2009-07-19T00:54:52Z 2009-07-19T00:54:52Z If you have enough catch blocks on a single try that you need to list them in priority order in order to understand it, I would assume your code needs refactoring. :-P http://stackoverflow.com/questions/1111258/can-a-textnode-have-a-childnode-which-is-an-elementnode/1111269#1111269 Comment by technophile on can a textNode have a childNode which is an elementNode ? technophile 2009-07-10T18:51:10Z 2009-07-10T18:51:10Z That would be my <i>guess</i>. However, it wouldn't be the first time some code got printed in a book despite being completely wrong. :)