User Chris Pietschmann - Stack Overflowmost recent 30 from stackoverflow.com2009-11-08T18:26:32Zhttp://stackoverflow.com/feeds/user/7831http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/176580/what-was-your-first-programming-language0What was your first programming language?Chris Pietschmann2008-10-06T23:09:22Z2009-11-08T13:34:03Z
<p>When you first started to write program, what was the first programming language you learned?</p>
<p>Please don't post repeats. If someone already posted it, just vote for it.</p>
http://stackoverflow.com/questions/1657067/why-do-most-programmers-know-nothing-about-hardware-3Why do most programmers know nothing about hardware? [closed]Chris Pietschmann2009-11-01T12:37:54Z2009-11-03T11:48:36Z
<p>Ok, maybe I'm exaggerating a little in the question, but it's mostly true. I must say that most of the programmers / developers / coders I have worked with in the past didn't really know much about computer hardware. I even worked with a few that could barely plug in the keyboard and mouse.</p>
<p>To me it's extremely important to know how to put a computer together (Mobo, CPU, Ram, Power Supply, Case, Hard Drives, etc.) and be able to troubleshoot possible hardware and driver problems when software isn't functioning as expected.</p>
<p>Sometimes I really wonder what some of these people learned in College, especially since I do NOT have a College degree and am mostly self taught.</p>
<p>One could say, "You're a programmer, why waste time learning about hardware when you can learn a new library or framework to get your job done better?" I believe that being able to make sure my development machine is functioning at it highest, at all times, is key to my productivity.</p>
<p>Based on what I stated above, you may be thinking that I'm a hardcore Linux guy and and when I mention drivers I'm referring to writing my own or debuging the kernel. Well, in fact I'm not a Linux guy at all, I'm a Windows / .NET developer, so I'm not referring to driver writing at all.</p>
<p>Also, I must mention that I rarely have issues with my own machines, but when a friend or family member calls me about an issue, I can fix it.</p>
<p>Update: I know I didn't mention anything about knowing how the hardware works from an electronics perspective, but that's really an advanced topic that requires you to go to school for Engineering instead of Computer Science or Programming. I have read some over the years about electronics, and want to learn much more, but I figure this is an area that's too far out there to expect the average programmer to know about; where the basics should at least be taught/learned.</p>
http://stackoverflow.com/questions/1649066/activator-createinstancet-vs-new/1649108#16491080Answer by Chris Pietschmann for Activator.CreateInstance<T> Vs new Chris Pietschmann2009-10-30T10:47:31Z2009-10-30T10:47:31Z<p>This overload of the "<a href="http://msdn.microsoft.com/en-us/library/0hcyx2kd.aspx" rel="nofollow">Activator.CreateInstance</a>" method is used by compilers to implement the instantiation of types specified by type parameters using generics.</p>
<p>Say you have the following method:</p>
<pre><code>public static T Factory<T>() where T: new()
{
return new T();
}
</code></pre>
<p>The compiler will convert the "return new T();" to call "CreateInstance".</p>
<p>In general, there is no use for the CreateInstance in application code, because the type must be known at compile time. If the type is known at compile time, normal instantiation syntax can be used (new operator in C#, New in Visual Basic, gcnew in C++).</p>
<p>More Info: <a href="http://msdn.microsoft.com/en-us/library/0hcyx2kd.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/0hcyx2kd.aspx</a></p>
http://stackoverflow.com/questions/1645192/what-to-replace-frontpage-with/1645249#16452496Answer by Chris Pietschmann for What to replace FrontPage with?Chris Pietschmann2009-10-29T17:15:02Z2009-10-29T17:15:02Z<p>I think the natural upgrade path would be <a href="http://www.microsoft.com/Expression/products/Web%5FOverview.aspx" rel="nofollow">Microsoft Expression Web</a>.</p>
http://stackoverflow.com/questions/1638562/use-lambda-expression-within-asp-net-mvc-view-using-vb-net2Use Lambda Expression within ASP.NET MVC View using VB.NETChris Pietschmann2009-10-28T16:51:23Z2009-10-28T18:06:49Z
<p>With ASP.NET MVC 1.0, .NET 3.5 and C# you can easily pass a method a lambda expression that will do a "Response.Write" some content when it's executed within the method:</p>
<pre><code><% Html.SomeExtensionMethod(
() => { <%
<p>Some page content<p>
%> }
) %>
</code></pre>
<p>The method signature is similar to this:</p>
<pre><code>public void SomeExtensionMethod(this HtmlHelper helper, Action pageContent)
{
pageContent();
}
</code></pre>
<p>Does anyone know how to peforma a similar call using Lambda expressions in VB.NET using the same method signature shown above?</p>
<p>I've tried the following in VB.NET, but it wont work:</p>
<pre><code><% Html.SomeExtensionMethod(New Action( _
Function() %> <p>Some Content</p> <% _
)) %>
</code></pre>
<p>I get an exception saying "Expression Expected."</p>
<p>Can anyone help me with what I'm doing wrong? How do you do this in VB.NET?</p>
http://stackoverflow.com/questions/1624667/is-jint-javascript-interpreter-for-net-reliable/1624888#16248880Answer by Chris Pietschmann for Is "Jint - Javascript Interpreter for .NET" reliable?Chris Pietschmann2009-10-26T13:46:36Z2009-10-26T13:46:36Z<p>I was not aware of this project. I looks interesting. However, I'm not sure how many people have actually done much using it since its only a month old and has only had a grand total of 537 downloads since it was first released. Also, the 0.8.4 release, just came out today, and has only been downloaded a total of 11 times.</p>
<p>You'll probably have much better luck asking this question on the Jint projects discussion forums:</p>
<p><a href="http://jint.codeplex.com/Thread/List.aspx" rel="nofollow">http://jint.codeplex.com/Thread/List.aspx</a></p>
http://stackoverflow.com/questions/1358431/virtual-earth-shape-rendering-performance/1622765#16227650Answer by Chris Pietschmann for Virtual Earth Shape Rendering PerformanceChris Pietschmann2009-10-26T01:50:33Z2009-10-26T01:50:33Z<p>The solution you're probably looking for is to actually use "Map Cruncher" to create map tile images from your image. Then these map tile images can be overlaid on the VEMap using a Custom Tile Layer, and will be rendered exactly the same way as the Map Images themselves.</p>
<p><a href="http://www.microsoft.com/maps/product/mapcruncher.aspx" rel="nofollow">http://www.microsoft.com/maps/product/mapcruncher.aspx</a></p>
http://stackoverflow.com/questions/1476248/does-a-silverlight-3-out-of-browser-oob-application-support-bing-maps-or-virtua/1622757#16227570Answer by Chris Pietschmann for Does a Silverlight 3 out of browser (OOB) application support Bing Maps or Virtual Earth Maps?Chris Pietschmann2009-10-26T01:46:56Z2009-10-26T01:46:56Z<p>Microsoft has the Bing Maps Silverlight Control that allows you to implement Bing Maps within a Silverlight application. And, yes you can use this control in a Silverlight 3 "out of browser" application.</p>
<p>Here's a "Getting Started" tutorial on using the control:</p>
<p><a href="http://pietschsoft.com/post/2009/03/Getting-Started-Virtual-Earth-Silverlight-Map-Control-SDK-CTP.aspx" rel="nofollow">http://pietschsoft.com/post/2009/03/Getting-Started-Virtual-Earth-Silverlight-Map-Control-SDK-CTP.aspx</a></p>
<p>One thing to note is that the current release of the Bing Maps Silverlight Control (at the time of posting this) is a CTP (Community Tech Preview) and can not be used in a production application. Microsoft is moving forward with Silverlight and Bing Maps, so I suspect that there will be a "Final" release sometime in the future; however, Microsoft has yet to announce when it will be available.</p>
http://stackoverflow.com/questions/252751/where-are-some-good-tutorials-on-writing-a-custom-linq-provider4Where are some good tutorials on writing a custom LINQ Provider?Chris Pietschmann2008-10-31T06:48:52Z2009-10-22T11:35:59Z
<p>I would like to build a custom LINQ Provider. Mostly for learning purposes, but it may be usefull in the future. I've heard it's not a simple thing to do, but...</p>
<p>Where are some good tutorials on writing a custom LINQ Provider?</p>
http://stackoverflow.com/questions/1602097/what-does-the-operator-do/1602128#16021281Answer by Chris Pietschmann for What does the => operator do?Chris Pietschmann2009-10-21T16:52:07Z2009-10-21T16:52:07Z<p>All lambda expressions use the lambda operator =>, which is read as "goes to". The left side of the lambda operator specifies the input parameters (if any) and the right side holds the expression or statement block. The lambda expression x => x * x is read "x goes to x times x." This expression can be assigned to a delegate type as follows:</p>
<pre><code>delegate int del(int i);
static void Main(string[] args)
{
del myDelegate = x => x * x;
int j = myDelegate(5); //j = 25
}
</code></pre>
<p><a href="http://msdn.microsoft.com/en-us/library/bb397687.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb397687.aspx</a></p>
<pre><code>Func<int, bool> myFunc = x => x == 5;
bool result = myFunc(4); // returns false of course
</code></pre>
http://stackoverflow.com/questions/984576/when-is-visual-studio-2010-expected-to-rtm6When is Visual Studio 2010 expected to RTM?Chris Pietschmann2009-06-12T01:11:16Z2009-10-20T12:19:51Z
<p>I know the version / product name says "2010", but that doesn't necessarily mean that it will RTM in 2010. After all VS'2008 RTM'd in November 2007.</p>
<p>The last Beta of VS'2008 came out in July 2007, and it RTM'd in November. So based on the previous version that places VS'2010 to RTM in September 2010 at the very earliest since the first Beta just came out in May.</p>
<p>Anyone have any other speculations?</p>
http://stackoverflow.com/questions/424239/can-a-single-developer-still-make-money-with-shareware/1593913#15939130Answer by Chris Pietschmann for Can a single developer still make money with shareware?Chris Pietschmann2009-10-20T11:20:31Z2009-10-20T11:20:31Z<p>One thing that I've found that works for developer tools or desktop software is to offer a "Free Edition" and a "Full" Paid Version. People don't like to use "Trial" versions that expire at a certain time or number of uses. The "Free Edition" could show a "nag" screen when run or have feature limitation, then when they purchase the "Full" Paid Version it will unlock all features and remove any "nag" screen. Usually you want to stay clear of "nag" screens, but they still can be useful with desktop apps.</p>
<p>Also, you may find it more profitable to build some type of web service that you charge a monthly subscription fee and/or have a "Free" subscription object that is banner ad supported.</p>
<p>In the end, it really depends on the idea. If you have a great idea, or just plain implement it easy, simpler, cleaner than the competition you could make a lot of money. However, until you build it and launch it, you'll never know.</p>
<p>Plus, it's very hard to figure out what percentage of downloads of a completely Free product will convert to paid users once you start charging. Don't be surprised if 1 out of that 150 downloads per month actually purchase the paid version.</p>
http://stackoverflow.com/questions/252014/how-would-you-describe-the-difference-between-managed-byte-code-and-unmanaged-nat4How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer?Chris Pietschmann2008-10-30T22:39:03Z2009-10-19T17:38:11Z
<p>Sometimes it's difficult to describe some of the things that "us programmers" may think are simple to non-programmers and management types.</p>
<p>So...</p>
<p>How would you describe the difference between Managed Code (or Java Byte Code) and Unmanaged/Native Code to a Non-Programmer?</p>
http://stackoverflow.com/questions/109399/can-you-do-desktop-development-using-javascript12Can you do Desktop Development using JavaScript?Chris Pietschmann2008-09-20T21:08:18Z2009-10-18T05:56:06Z
<p>I know there's JScript.NET, but it isn't the same as the JavaScript we know from the web.</p>
<p>Does anyone know if there are any JavaScript based platforms/compilers for desktop development? Most specifically Windows desktop development.</p>
http://stackoverflow.com/questions/1570127/render-partial-view-using-jquery-in-asp-net-mvc/1570134#15701341Answer by Chris Pietschmann for Render Partial View Using jQuery in ASP.NET MVCChris Pietschmann2009-10-15T03:25:40Z2009-10-15T03:25:40Z<p>You'll need to create an Action on your Controller that returns the rendered result of the "UserDetails" partial view or control. Then just use an Http Get or Post from jQuery to call the Action to get the rendered html to be displayed.</p>
http://stackoverflow.com/questions/106912/how-to-draw-custom-button-in-window-titlebar-with-windows-forms1How to draw custom button in Window Titlebar with Windows Forms?Chris Pietschmann2008-09-20T03:12:42Z2009-10-14T10:03:41Z
<p>How do you draw a custom button next to the minimize, maximize and close buttons within the Titlebar of the Form?</p>
<p>I know you need to use Win32 API calls and override the WndProc procedure, but I haven't been able to figure out a solution that works right.</p>
<p>Does anyone know how to do this? More specifically, does anyone know a way to do this that works in Vista?</p>
http://stackoverflow.com/questions/129335/how-do-you-redirecttoaction-using-post-instead-of-get6How do you RedirectToAction using POST instead of GET?Chris Pietschmann2008-09-24T19:30:30Z2009-10-01T17:03:07Z
<p>When you call RedirectToAction within a Controller, it automatically redirects using an HTTP GET. How do I explicitly tell it to use an HTTP POST?</p>
<p>I have an Action that accepts both GET and POST requests, and I want to be able to RedirectToAction using a POST and send it some values.</p>
<p>Like this:</p>
<p>this.RedirectToAction("actionname", new RouteValueDictionary(new { someValue = 2, anotherValue = "text" }));</p>
<p>I want the someValue and anotherValue values to be sent using an HTTP POST instead of a GET. Does anyone know how to do this?</p>
http://stackoverflow.com/questions/1291370/are-there-any-good-xmlmembershipprovider-and-xmlroleprovider-implementations-out/1298143#12981431Answer by Chris Pietschmann for Are there any good XmlMembershipProvider and XmlRoleProvider implementations out there that can be used for Commercial purposes?Chris Pietschmann2009-08-19T06:40:09Z2009-08-19T06:40:09Z<p>Here's a real simple implementation of one:</p>
<p><a href="http://madskristensen.net/post/XML-membership-provider-for-ASPNET-20.aspx" rel="nofollow">http://madskristensen.net/post/XML-membership-provider-for-ASPNET-20.aspx</a></p>
http://stackoverflow.com/questions/1291212/why-is-microsoft-source-code-so-complex/1291235#129123514Answer by Chris Pietschmann for Why is Microsoft source code so complex? Chris Pietschmann2009-08-18T00:37:15Z2009-08-18T00:37:15Z<p>The "complexity" of the source code of the .NET Framework libraries is a necessary evil. Also, the developers at Microsoft seem to have the resources (other .NET Framework developers) to be able to utilize many more features of .NET and the Framework that you (the average developer) and I may not be aware of. Plus there's plenty of compatibility things in there so use cases and features for many, many scenarios are includes; not just the most commonly used ones.</p>
<p>Also, it may be "complex" to you, but "simple" to the person that wrote it. All you can do is what the rest of us do... Learn how to do stuff by looking at the code.</p>
<p>Additionally, the source code viewed through .NET Reflector isn't as they wrote it, its a decompilation of the compiled code. And, the compiler will perform it's own "optimizations" at times. If you are viewing the source code that Microsoft distributes themselves, then you're looking at the real thing.</p>
http://stackoverflow.com/questions/872868/how-to-test-subdomains-on-a-development-machine-abc-localhost/1291124#12911240Answer by Chris Pietschmann for How to test subdomains on a development machine? abc.localhostChris Pietschmann2009-08-18T00:04:05Z2009-08-18T00:04:05Z<p>You can get the requested domain with Subdomain intact by using "<em>Request.Headers["HOST"]</em>". Here's a simple method that returns the Subdomain of the current request. This method also assumes that you have a ".COM", ".NET", etc. after the domain just like the real web. So you'll want to change your HOSTS file to include "localhost.com", "abc.localhost.com", etc.</p>
<pre><code>public string subdomain()
{
string host = Request.Headers["HOST"];
if (!string.IsNullOrEmpty(host))
{
var parts = host.Split('.');
if (parts.Length > 2)
{
return parts[0];
}
}
return string.Empty;
}
</code></pre>
<p>I was searching on this very thing and here's an article that is what actually helped me figure this out:
<a href="http://blogs.securancy.com/post/ASPNET-MVC-Subdomain-Routing.aspx" rel="nofollow">http://blogs.securancy.com/post/ASPNET-MVC-Subdomain-Routing.aspx</a></p>
http://stackoverflow.com/questions/718582/whats-the-funniest-user-request-youve-ever-had/1283689#12836892Answer by Chris Pietschmann for What's the funniest user request you've ever had?Chris Pietschmann2009-08-16T07:32:29Z2009-08-16T07:32:29Z<p>"I just deleted a client data record. Can you restore it from the Recycle Bin?"</p>
<p>Some people don't understand that when a record is deleted, it's deleted. That's kinda what "deleted" means, especially when they didn't ask for us to build an "un-delete" feature.</p>
http://stackoverflow.com/questions/718582/whats-the-funniest-user-request-youve-ever-had/1283684#12836840Answer by Chris Pietschmann for What's the funniest user request you've ever had?Chris Pietschmann2009-08-16T07:29:07Z2009-08-16T07:29:07Z<p>Client: "Are you sure you pushed the last copy edit live?"</p>
<p>Programmer: "Yes it is live and I tested it."</p>
<p>Client: "I just looked and it still shows the old copy text."</p>
<p>Programmer: "Did you try clearing your browser cache?"</p>
<p>Client: "What's that? How do I do that? Can't you just have the site do that for me?"</p>
http://stackoverflow.com/questions/1283676/green-visual-studio/1283679#12836790Answer by Chris Pietschmann for Green Visual Studio ?Chris Pietschmann2009-08-16T07:24:14Z2009-08-16T07:24:14Z<p>I don't think so if it doesn't just automatically do it.</p>
http://stackoverflow.com/questions/1266724/what-is-microsoft-up-to-next-with-internet-explorer/1267140#12671400Answer by Chris Pietschmann for What is Microsoft up to next with Internet Explorer?Chris Pietschmann2009-08-12T16:04:43Z2009-08-12T16:04:43Z<p>Since IE8 was just released this year, my best guess is that a new version IE isn't due 'till at least middle 2010, but it may be more likely that it'll come in 2011. And as far as fully supporting the latest versions of CSS and HTML... Only time will tell.</p>
http://stackoverflow.com/questions/1249266/recommended-books-for-web-developers-trying-to-bring-it-to-the-next-level/1250004#12500042Answer by Chris Pietschmann for Recommended books for web developers trying to bring it to the next level?Chris Pietschmann2009-08-08T22:02:33Z2009-08-08T22:02:33Z<p><a href="http://rads.stackoverflow.com/amzn/click/0596517742" rel="nofollow">JavaScript: The Good Parts by Douglas Crockford</a></p>
<p><a href="http://rads.stackoverflow.com/amzn/click/1933988355" rel="nofollow">jQuery in Action from Manning Publishing</a></p>
<p>These are a must read for any web developer using JavaScript; which is becoming pretty much every web developer these days. Using the knowledge/techniques you learn about the JavaScript language from these books, combined with all the jQuery library has to offer, will definitely bring your JavaScript code to the next level and on par with todays JavaScript coding standards and techniques.</p>
http://stackoverflow.com/questions/1236053/why-google-and-twitter-use-table-layout/1236252#12362521Answer by Chris Pietschmann for Why Google and Twitter use table layout?Chris Pietschmann2009-08-05T23:21:26Z2009-08-05T23:21:26Z<p><strong>Browser Support</strong> - These guys need to have their websites render perfectly on ALL web browsers (New, Old and Obscure). No matter who's using their websites and what OS/Browser their using, these websites need to work.</p>
<p>Each web browser supports it's own implementation of CSS and this causes a similar issue to that of the JavaScript DOM support in various browsers.</p>
<p><strong>Page Load Time</strong> - Also their pages are optimized for Page load times. If it takes a user too long to load the page they'll just go somewhere else. There are still plenty of users without broadband, even a lot of mobile devices don't have very fast connections depending on where you are.</p>
http://stackoverflow.com/questions/97379/what-are-the-benefits-of-a-dual-core-cpu-over-quad-core-in-a-desktop-pc3What are the benefits of a Dual-Core CPU over Quad-Core in a Desktop PC? [closed]Chris Pietschmann2008-09-18T21:53:10Z2009-08-05T13:06:04Z
<p>I know that in most cases when you buy a Dual-Core CPU for the same price you could get a Quad-Core, you end up getting 2 cores that are faster individually than the 4 cores individually in the Quad-Core CPU.</p>
<p>Yes, you can essentially have 4 processes run simultaneously with a Quad-Core as compared to 2 with a Dual-Core, but because of the above mentioned difference you may find that the Dual-Core CPU performs better on your Desktop machine.</p>
<p>This is in theory of course.</p>
<p>Has anyone tested this? Also, what are everyone's thoughts on this topic?</p>
http://stackoverflow.com/questions/1204090/are-there-any-articles-examples-of-using-system-addin-with-asp-net0Are there any articles/examples of using System.AddIn with ASP.NET?Chris Pietschmann2009-07-30T02:01:31Z2009-07-30T18:28:27Z
<p>Does anyone know about any articles/examples of using System.AddIn with ASP.NET and/or ASP.NET MVC applications?</p>
<p>I'm looking to use System.AddIn to make an ASP.NET MVC application extensible.</p>
http://stackoverflow.com/questions/184309/how-to-use-system-io-compression-to-read-write-zip-files4How to use System.IO.Compression to read/write ZIP files?Chris Pietschmann2008-10-08T18:56:16Z2009-07-30T13:47:07Z
<p>I know there are <a href="http://stackoverflow.com/questions/11737/net-library-to-unzip-zip-and-rar-files">libraries out there for working with ZIP files</a>. And, you can alternatively <a href="http://stackoverflow.com/questions/30211/windows-built-in-zip-compression-script-able">use the functionality built into Windows for working ZIP files</a>.</p>
<p>But, I'm wondering if anyone has worked out how to use the tools built into the System.IO.Compression namespace within .NET for reading/writing ZIP files? Or, is it not possible using only this namespace?</p>
<p>UPDATED: I've seem someone comment that the System.IO.Packaging namespace might be usefull with this also. Does anyone know exactly how to do it?</p>
http://stackoverflow.com/questions/1202424/vemap-pan-triggers-vemap-onclick/1204248#12042480Answer by Chris Pietschmann for VEMap Pan triggers VEMap.onclickChris Pietschmann2009-07-30T03:10:23Z2009-07-30T03:10:23Z<p>It all depends on what you're trying to do. You could check for which mouse button was pressed during the onclick event handler. For example: If it was the Left Mouse Button then do nothing, else if it's the Right Mouse Button then do your logic to display a message, or plot pushpin, etc.</p>
<p>To clarify, only Panning the Map using the Mouse will trigger the onclick event. If you use the little arrows on the navigation dashboard, it will not trigger the onclick event.</p>
http://stackoverflow.com/questions/1695927/static-files-js-css-triggering-asp-net-pipeline/1695953#1695953Comment by Chris Pietschmann on Static files (.js, .css) triggering ASP.NET pipeline.Chris Pietschmann2009-11-08T11:33:11Z2009-11-08T11:33:11ZTo add clarification: The VS Dev Server uses the ASP.NET Hosting API's to create the Web Server; so naturally all requests are handled by ASP.NET. IIS on the other hand doesn't require ASP.NET to function, and knows how to serve up files without using the ASP.NET Hosting API's.http://stackoverflow.com/questions/1657067/why-do-most-programmers-know-nothing-about-hardware/1657090#1657090Comment by Chris Pietschmann on Why do most programmers know nothing about hardware?Chris Pietschmann2009-11-01T12:50:04Z2009-11-01T12:50:04ZYou mentioned "Younger Developers". At 28 I consider myself to be a "Younger Developers", but I suppose the abstractions of .NET/Java are still fairly new, and the curriculum in schools are changing to target them more.http://stackoverflow.com/questions/227132/using-aspx-rendering-engine-to-generate-non-html/227203#227203Comment by Chris Pietschmann on Using aspx Rendering Engine to Generate Non-HTMLChris Pietschmann2009-11-01T12:41:31Z2009-11-01T12:41:31ZT4 is part of Visual Studio, so you can't distribute it with your app to use at Runtime.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406847#406847Comment by Chris Pietschmann on What's your most controversial programming opinion?Chris Pietschmann2009-11-01T12:06:34Z2009-11-01T12:06:34ZThis isn't controversial, but it is 100% true!http://stackoverflow.com/questions/1645254/using-static-constructor-jon-skeet-brainteaserComment by Chris Pietschmann on Using Static Constructor (Jon Skeet Brainteaser)Chris Pietschmann2009-10-29T17:17:52Z2009-10-29T17:17:52ZYou're asking "if something has changed in recent versions of Visual Studio". What you're really asking would be if anything changed in the newer version of the .NET Framework. And, really nothing that major would change from version to version, since it would be a Major Breaking Change.http://stackoverflow.com/questions/1638562/use-lambda-expression-within-asp-net-mvc-view-using-vb-netComment by Chris Pietschmann on Use Lambda Expression within ASP.NET MVC View using VB.NETChris Pietschmann2009-10-29T15:37:42Z2009-10-29T15:37:42ZThis is also a very simplified use case, not the full usage scenario.http://stackoverflow.com/questions/1640414/does-a-base-classs-constructor-and-destructor-get-called-with-the-derived-onesComment by Chris Pietschmann on Does a base class's constructor and destructor get called with the derived ones?Chris Pietschmann2009-10-28T22:04:28Z2009-10-28T22:04:28ZIt usually helps to have the question relevant to what you are asking, instead of making everyone look at the description to see what you are actually asking.http://stackoverflow.com/questions/1638562/use-lambda-expression-within-asp-net-mvc-view-using-vb-net/1638696#1638696Comment by Chris Pietschmann on Use Lambda Expression within ASP.NET MVC View using VB.NETChris Pietschmann2009-10-28T20:36:12Z2009-10-28T20:36:12ZIt seems that this is one way that C# is superior to VB.NEThttp://stackoverflow.com/questions/1638562/use-lambda-expression-within-asp-net-mvc-view-using-vb-net/1638696#1638696Comment by Chris Pietschmann on Use Lambda Expression within ASP.NET MVC View using VB.NETChris Pietschmann2009-10-28T17:17:45Z2009-10-28T17:17:45ZDarin, you state that the lambda does nothing in the code you posted. What it does is allow for deferred execution; which can be very handy in some situations.http://stackoverflow.com/questions/1638562/use-lambda-expression-within-asp-net-mvc-view-using-vb-net/1638696#1638696Comment by Chris Pietschmann on Use Lambda Expression within ASP.NET MVC View using VB.NETChris Pietschmann2009-10-28T17:16:41Z2009-10-28T17:16:41ZJason, How do you do this in 3.5 or 4.0?http://stackoverflow.com/questions/1638562/use-lambda-expression-within-asp-net-mvc-view-using-vb-net/1638696#1638696Comment by Chris Pietschmann on Use Lambda Expression within ASP.NET MVC View using VB.NETChris Pietschmann2009-10-28T17:13:08Z2009-10-28T17:13:08ZWhat about ASP.NET 4.0?http://stackoverflow.com/questions/1638562/use-lambda-expression-within-asp-net-mvc-view-using-vb-netComment by Chris Pietschmann on Use Lambda Expression within ASP.NET MVC View using VB.NETChris Pietschmann2009-10-28T17:12:19Z2009-10-28T17:12:19ZThis comes in very handy with ASP.NET MVC.http://stackoverflow.com/questions/1106372/write-a-proxy-server-in-net-c-or-vb-net/1106407#1106407Comment by Chris Pietschmann on Write a Proxy Server in .NET (C# or VB.NET)?Chris Pietschmann2009-10-26T13:57:09Z2009-10-26T13:57:09ZThis seems to be the only one out there. Too bad.http://stackoverflow.com/questions/984576/when-is-visual-studio-2010-expected-to-rtm/1594215#1594215Comment by Chris Pietschmann on When is Visual Studio 2010 expected to RTM?Chris Pietschmann2009-10-26T13:53:09Z2009-10-26T13:53:09ZThis is true, but it seems that MS products RTM about 2 months previous to their release date. I would expect RTM to be in January, but only time will tell.http://stackoverflow.com/questions/1157381/if-nerddinner-had-ads-would-the-bing-maps-compoment-have-licensing-costs/1414031#1414031Comment by Chris Pietschmann on If NerdDinner had ads, would the Bing Maps compoment have licensing costs?Chris Pietschmann2009-10-26T01:54:42Z2009-10-26T01:54:42Z"Offering goods or services for a fee through your Application" is the key phrase. Since you are offering a "service", as in advertising, through your Application (the application that implements Bing Maps), then Yes you would need to purchase Bing Maps licensing. Unless of course you get permission from MS to use it for Free.