User Christopher - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T11:47:41Zhttp://stackoverflow.com/feeds/user/5072http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/525797/possible-to-extend-the-string-class-in-net/525881#5258810Answer by Christopher for Possible to extend the String class in .netChristopher2009-02-08T15:12:14Z2009-02-08T15:12:14Z<p>You can also use an adapter pattern to add additional functionality. You can do operator overloading to make it feel like the built in string. Of course this won't be automatic for existing uses of "string" but neither would your solution of directly inheriting from it, if it were possible. </p>
http://stackoverflow.com/questions/500696/why-does-visual-studio-crash-opening-aspx-with-mvc-rc1/512383#5123830Answer by Christopher for Why does Visual Studio crash opening ASPX with MVC RC1Christopher2009-02-04T17:20:48Z2009-02-04T17:20:48Z<p>The problem was indeed, powercommands for VS 2008. Uninstall them if you can live without them and the aspx pages/designers will open fine. </p>
http://stackoverflow.com/questions/228181/zen-of-python/228203#228203-20Answer by Christopher for zen of pythonChristopher2008-10-23T01:32:10Z2008-10-23T01:32:10Z<p>Not an appropriate question for this site. Besides, a lot of these don't even apply to python or are so generic they convey nothing. </p>
http://stackoverflow.com/questions/117173/c-try-catch-every-line-of-code-without-individual-try-catch-blocks/118742#1187422Answer by Christopher for C#: Try-catch every line of code without individual try-catch blocksChristopher2008-09-23T02:03:23Z2008-09-23T02:03:23Z<p>As someone mentioned, VB allows this. How about doing it the same way in C#? Enter trusty reflector: </p>
<p>This: </p>
<pre><code>Sub Main()
On Error Resume Next
Dim i As Integer = 0
Dim y As Integer = CInt(5 / i)
End Sub
</code></pre>
<p>Translates into this: </p>
<pre><code>public static void Main()
{
// This item is obfuscated and can not be translated.
int VB$ResumeTarget;
try
{
int VB$CurrentStatement;
Label_0001:
ProjectData.ClearProjectError();
int VB$ActiveHandler = -2;
Label_0009:
VB$CurrentStatement = 2;
int i = 0;
Label_000E:
VB$CurrentStatement = 3;
int y = (int) Math.Round((double) (5.0 / ((double) i)));
goto Label_008F;
Label_0029:
VB$ResumeTarget = 0;
switch ((VB$ResumeTarget + 1))
{
case 1:
goto Label_0001;
case 2:
goto Label_0009;
case 3:
goto Label_000E;
case 4:
goto Label_008F;
default:
goto Label_0084;
}
Label_0049:
VB$ResumeTarget = VB$CurrentStatement;
switch (((VB$ActiveHandler > -2) ? VB$ActiveHandler : 1))
{
case 0:
goto Label_0084;
case 1:
goto Label_0029;
}
}
catch (object obj1) when (?)
{
ProjectData.SetProjectError((Exception) obj1);
goto Label_0049;
}
Label_0084:
throw ProjectData.CreateProjectError(-2146828237);
Label_008F:
if (VB$ResumeTarget != 0)
{
ProjectData.ClearProjectError();
}
}
</code></pre>
http://stackoverflow.com/questions/118633/whats-so-wrong-about-using-gc-collect/118668#1186680Answer by Christopher for What's so wrong about using GC.Collect()?Christopher2008-09-23T01:41:38Z2008-09-23T01:41:38Z<p>Bottom line, you can profile the application and see how these additional collections affect things. I'd suggest staying away from it though unless you are going to profile. The GC is designed to take care of itself and as the runtime evolves, they may increase efficiency. You don't want a bunch of code hanging around that may muck up the works and not be able to take advantage of these improvements. There is a similar argument for using foreach instead of for, that being, that future improvements under the covers can be added to foreach and your code doesn't have to change to take advantage. </p>
http://stackoverflow.com/questions/118567/is-there-ever-a-good-reason-to-force-opening-a-new-browser-window/118592#1185925Answer by Christopher for Is there ever a good reason to force opening a new browser window?Christopher2008-09-23T01:15:55Z2008-09-23T01:15:55Z<p>I do love how google reader opens all links in a new window. There are lots of reasons why Reader wouldn't work if it used the current window but besides that, it work great with Firefox cause it opens in a new tab rather than a new window. So it's a great experience overall and it just had to evolve that way. So never say 'never'. </p>
http://stackoverflow.com/questions/57600/continue-considered-harmful/58320#583200Answer by Christopher for Continue Considered Harmful?Christopher2008-09-12T04:49:23Z2008-09-12T04:49:23Z<p>I believe the bottom line argument against continue is that it makes it harder to PROVE that the code is correct. This is prove in the mathematical sense. But it probably doesn't matter to you because no one has the resources to 'prove' a computer program that is significantly complex. </p>
<p>Enter the static-analysis tools. You may make things harder on them...</p>
<p>And the goto, that sounds like a nightmare for the same reasons but at any random place in code. </p>
http://stackoverflow.com/questions/58107/how-to-find-that-rock-star-junior-developer/58303#58303-1Answer by Christopher for How to Find that Rock Star Junior Developer?Christopher2008-09-12T04:35:30Z2008-09-12T04:35:30Z<p>Why treat them any different than the 10+ programmers? I can do things on 4+ years that a lot of the veterans can't (faster, that's key) so ask me interview questions like I had a 1000+ years. </p>
http://stackoverflow.com/questions/47854/how-do-you-create-a-virtual-network-interface-on-windows/48602#486020Answer by Christopher for How do you create a virtual network interface on Windows?Christopher2008-09-07T17:36:35Z2008-09-07T17:36:35Z<p>In the Singularity project, Microsoft research communicates with the singularity VM through a "loopback" adapter. Maybe that'd help? </p>
<p>Running it is easy so it may be something fun to do anyway. :)</p>
<p><a href="http://research.microsoft.com/os/Singularity/" rel="nofollow">http://research.microsoft.com/os/Singularity/</a> </p>