User technophile - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T16:13:07Zhttp://stackoverflow.com/feeds/user/23029http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1425159/algorithm-for-auto-appending-a-unique-id-to-duplicate-titles/1615906#16159060Answer by technophile for Algorithm for Auto-Appending a Unique ID to Duplicate Titlestechnophile2009-10-23T21:09:05Z2009-10-23T21:09:05Z<pre>declare @name nvarchar(40)
declare @suffix int
declare @currentName nvarchar(50)
set @name = 'My Document'
set @suffix = 1
set @currentName = @name
while exists (select 1 from [table] where [name] = @currentName)
begin
set @currentName = @name + ' ' + cast(@suffix as nvarchar(10))
set @suffix = @suffix + 1
end</pre>
<p>@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#16158251Answer by technophile for Dynamic typing of foreach variable.technophile2009-10-23T20:52:56Z2009-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#16146071Answer by technophile for Migrating asp.net website from IIS6 to IIS7 - Debugging differencestechnophile2009-10-23T16:38:41Z2009-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#16088490Answer by technophile for Is it ok to use ticks to pass datetime using ticks between pages of an applicationtechnophile2009-10-22T17:47:15Z2009-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#15400461Answer by technophile for Custom build task: how to write output to the build log filetechnophile2009-10-08T19:53:44Z2009-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#15394210Answer by technophile for TFS Changeset history using QueryHistory after branch rename technophile2009-10-08T17:45:07Z2009-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#15351451Answer by technophile for MSBuild TFS Build Numbertechnophile2009-10-08T01:30:05Z2009-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#15049211Answer by technophile for Setting Membership Store Passwordstechnophile2009-10-01T16:10:42Z2009-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#12423313Answer by technophile for Converting bytes to GB in C#?technophile2009-08-07T00:50:58Z2009-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#11489985Answer by technophile for Order of catch clausestechnophile2009-07-19T00:51:21Z2009-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#11112693Answer by technophile for can a textNode have a childNode which is an elementNode ?technophile2009-07-10T18:41:05Z2009-07-10T18:47:10Z<p>I don't think so; I'm fairly certain that something like</p>
<pre><code><div>this is some <a href="...">text</a> with an element inside it.</div>
</code></pre>
<p>ends up being:</p>
<pre><code><div>
<textnode/>
<a>
<textnode/>
</a>
<textnode/>
</div>
</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#10890033Answer by technophile for Asp.NET Server Control Postbacktechnophile2009-07-06T20:14:45Z2009-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#10890203Answer by technophile for ItemGroup Item scope, alternatively "Why does MSBuild hate me?"technophile2009-07-06T20:17:16Z2009-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#9465031Answer by technophile for Why does visual studio .net 2008 lose debug ability after adding global.asax file?technophile2009-06-03T18:55:14Z2009-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#8047664Answer by technophile for Safe version of Path.Combinetechnophile2009-04-29T23:31:06Z2009-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#4151532Answer by technophile for Will T-Sql SET parameters be reset with pooled .NET connections?technophile2009-01-06T01:53:19Z2009-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#3753042Answer by technophile for A clean way of generating QueryString parameters for web requeststechnophile2008-12-17T17:18:44Z2008-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#3654830Answer by technophile for Is there a simple & extendable Data Class for ASP.NET?technophile2008-12-13T17:45:10Z2008-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#3654790Answer by technophile for Are event callbacks with (object, EventArgs) parameters a holdover from 1.1 and WinForms?technophile2008-12-13T17:43:32Z2008-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-have0DataContractSerializer: Handling objects whose type you don't know and don't have access to.technophile2008-12-08T19:03:21Z2008-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#3330642Answer by technophile for ASP.NET application exhibits strange behaviour through firewalltechnophile2008-12-02T04:36:00Z2008-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#3314540Answer by technophile for IEnumerable.Except wont work, so what do I do?technophile2008-12-01T17:00:02Z2008-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#3291791Answer by technophile for How do you specify stylesheets for spcific media using ASP.NET Themes?technophile2008-11-30T18:50:13Z2008-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#3180250Answer by technophile for Why does global.asax change sql connection?technophile2008-11-25T16:38:47Z2008-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#3145291Answer by technophile for < ajaxToolkit:TabPanel - would like to set "focus" on a different tabtechnophile2008-11-24T15:46:16Z2008-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><aspToolkit:TabPanel ID="TabPanel1" runat="server" ActiveTabIndex="1">...</aspToolkit:TabPanel></code></p>
http://stackoverflow.com/questions/306488/finding-the-file-version-of-a-com-dll-using-asp-net0Finding the File Version of a COM DLL using ASP.NETtechnophile2008-11-20T19:09:53Z2008-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#3042606Answer by technophile for Is there an optimal byte size for sending data over a network?technophile2008-11-20T03:40:32Z2008-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#3001861Answer by technophile for C#: Determine derived object type from a base class static methodtechnophile2008-11-18T21:22:46Z2008-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#29984810Answer by technophile for File permission in linux vs. in windowstechnophile2008-11-18T19:28:44Z2008-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#2762251Answer by technophile for Change each record in a table with no primary key?technophile2008-11-09T18:10:07Z2008-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#1904002Comment by technophile on Stored Procedure WHERE LIKE ID or NAMEtechnophile2009-12-14T22:51:46Z2009-12-14T22:51:46ZNot that I'm recommending that. ;)http://stackoverflow.com/questions/1903950/stored-procedure-where-like-id-or-name/1904002#1904002Comment by technophile on Stored Procedure WHERE LIKE ID or NAMEtechnophile2009-12-14T22:50:13Z2009-12-14T22:50:13ZAlternately, 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#1615828Comment by technophile on Dynamic typing of foreach variable.technophile2009-10-23T21:13:40Z2009-10-23T21:13:40Zvar 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#1615393Comment by technophile on How can I know the day name from a selected date?technophile2009-10-23T21:00:38Z2009-10-23T21:00:38ZI 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#1615436Comment by technophile on How can I know the day name from a selected date?technophile2009-10-23T20:59:19Z2009-10-23T20:59:19Z+1 for the dddd format answer.http://stackoverflow.com/questions/1615793/dynamic-typing-of-foreach-variableComment by technophile on Dynamic typing of foreach variable.technophile2009-10-23T20:56:07Z2009-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#1615818Comment by technophile on Dynamic typing of foreach variable.technophile2009-10-23T20:53:48Z2009-10-23T20:53:48ZThat will end up being functionally identical to "foreach (Control c in controls)"; 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#1558280Comment by technophile on Specify configuration file when running Tests on TFS Buid servertechnophile2009-10-13T18:21:47Z2009-10-13T18:21:47ZYou need to put it inside a PropertyGroup, i.e.
<PropertyGroup>
<RunConfigFile>...</RunConfigFile>
</PropertyGroup>http://stackoverflow.com/questions/1539799/autocomplete-email-address-and-or-names-in-cComment by technophile on Autocomplete email address and/or names in C#technophile2009-10-08T19:57:03Z2009-10-08T19:57:03ZYou need to specify WinForms or ASP.NET; the solutions are very different.http://stackoverflow.com/questions/1538301/c-does-foreach-iterate-by-reference/1538322#1538322Comment by technophile on C# - Does foreach() iterate by reference?technophile2009-10-08T14:52:52Z2009-10-08T14:52:52ZIt 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#1538316Comment by technophile on C# - Does foreach() iterate by reference?technophile2009-10-08T14:50:39Z2009-10-08T14:50:39ZThis is true even for value types, i.e. structs.http://stackoverflow.com/questions/1535134/msbuild-tfs-build-number/1535145#1535145Comment by technophile on MSBuild TFS Build Numbertechnophile2009-10-08T14:48:20Z2009-10-08T14:48:20ZAh, 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#1504865Comment by technophile on Setting Membership Store Passwordstechnophile2009-10-01T16:19:16Z2009-10-01T16:19:16ZYeah, 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#1148982Comment by technophile on Order of catch clausestechnophile2009-07-19T00:54:52Z2009-07-19T00:54:52ZIf 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. :-Phttp://stackoverflow.com/questions/1111258/can-a-textnode-have-a-childnode-which-is-an-elementnode/1111269#1111269Comment by technophile on can a textNode have a childNode which is an elementNode ?technophile2009-07-10T18:51:10Z2009-07-10T18:51:10ZThat 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. :)