What's your favourite part of C#? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T01:08:17Z http://stackoverflow.com/feeds/question/231485 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c 2 What's your favourite part of C#? tdyen 2008-10-23T20:54:11Z 2009-02-24T14:25:12Z <p>What's the feature you love the most in C#?</p> <p>Does it come from the new .NET 3.5 or is it just from the original C#?</p> <p>It can be as simple as the recommendation for camelCase and PascalCase, or as advanced as anonymous methods. What makes you like the C# language?</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231496#231496 2 Answer by Totty for What's your favourite part of C#? Totty 2008-10-23T20:56:16Z 2008-10-23T20:56:16Z <p>One thing I really like is it can be used in a lot of ways. I can write windows forms applications, WPF applications, console apps, web apps, XNA apps, etc.</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231503#231503 10 Answer by Jon Skeet for What's your favourite part of C#? Jon Skeet 2008-10-23T20:57:55Z 2008-10-23T20:57:55Z <p>The way it all hangs together. If you look at all the changes in C# 3 (with the possible exception of how extension methods are discovered) it still stays true to the original roots, while giving <em>massive</em> amounts of functionality.</p> <p>Also the way query expressions are compiled as a sort of "pre-main-compilation step" (which means their impact is pretty much solely within a single section of the spec) is really, really neat.</p> <p>Basically C# has been thought through extremely carefully, and it shows.</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231504#231504 3 Answer by Gabriel Isenberg for What's your favourite part of C#? Gabriel Isenberg 2008-10-23T20:58:15Z 2008-10-23T20:58:15Z <p>LINQ. LINQ to XML, LINQ to SQL, and LINQ to Objects all provide immense value. </p> <p>I was initially skeptical of the LINQ to SQL functionality, but even that ended up pretty well. I tend to use LINQPad in place of SQL Management Studio. LINQ to XML also trivializes one of the most common tasks in enterprise application development.</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231507#231507 3 Answer by Adam Davis for What's your favourite part of C#? Adam Davis 2008-10-23T20:58:48Z 2008-10-23T20:58:48Z <p>Irritating C# diehards by pronouncing it "see pound." So many more puns become available...</p> <p>heh heh heh... still cracks me up...</p> <p>-Adam</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231508#231508 7 Answer by Rayne for What's your favourite part of C#? Rayne 2008-10-23T20:58:49Z 2008-10-23T20:58:49Z <p>It's simplicity for one, it's a powerful language yet so simple, I like the fact that they are putting functional language aspects into also, I don't know how far C# will go but I believe it's going to be one of the languages used religiously like C++ is used today.</p> <ol> <li>Simplicity</li> <li>Functional properties</li> <li>Power and extent of the .NET library at it's disposal</li> <li>Beautiful elegant Syntax</li> <li>Easy to teach, easy to learn, easy to enjoy.</li> </ol> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231510#231510 6 Answer by Ray for What's your favourite part of C#? Ray 2008-10-23T20:59:10Z 2008-10-23T20:59:10Z <p>Generics. (I know they're not unique to C# but coming from Delphi, Generics are awesome).</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231515#231515 13 Answer by vfilby for What's your favourite part of C#? vfilby 2008-10-23T21:01:07Z 2008-10-23T21:01:07Z <p>The framework. As good of a language as C# is, it is really propelled forward by the supporting libraries.</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231520#231520 3 Answer by FlySwat for What's your favourite part of C#? FlySwat 2008-10-23T21:01:58Z 2008-10-23T21:01:58Z <p>Delegates!</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231545#231545 2 Answer by Nick for What's your favourite part of C#? Nick 2008-10-23T21:10:16Z 2008-10-23T21:10:16Z <p>Reflection and metadata.</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231555#231555 6 Answer by CMS for What's your favourite part of C#? CMS 2008-10-23T21:12:24Z 2008-10-23T21:12:24Z <p>I like very much the new C# 3.0 features, like the automatic properties and the object initializers, much less typing!</p> <pre><code>public class Person { public string FirstName { get; set; } public string LastName { get; set; } } Person p = new Person() { FirstName = "John", LastName = "Smith", }; </code></pre> <p>I also love <a href="http://msdn.microsoft.com/en-us/library/bb397687.aspx" rel="nofollow">Lambda Expressions</a>:</p> <p>(y,z) => return y * z; </p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231574#231574 2 Answer by Damir for What's your favourite part of C#? Damir 2008-10-23T21:18:34Z 2008-10-23T21:18:34Z <p>I liked C# ever since the first time I started intensively working with it (that would be version 1.1) because:</p> <ul> <li>it was pure OO language;</li> <li>pretty nice syntax</li> </ul> <p>But I started loving it only when I learned how to use <code>yield</code> statement and create anonymous methods (C# 2.0). I started truly adoring it when I wrote my first extension methods and classes that didn't require me to define to private fields and totally repetitive getters/setters (as CMS has illustrated above).</p> <p>Now I see C# as a big brother to Ruby, a language I love for its simplicity and expressive power.</p> <p>.NET Framework Class Library is certainly good, but it doesn't affect my love for C# as a language much.</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231582#231582 2 Answer by Otm Shank for What's your favourite part of C#? Otm Shank 2008-10-23T21:23:01Z 2008-10-23T21:23:01Z <p>developers, developers, developers, developers!</p> <p>Oh, and properties. They're kinda cool, too.</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231583#231583 1 Answer by Kon M for What's your favourite part of C#? Kon M 2008-10-23T21:24:38Z 2008-10-23T21:24:38Z <p>I like the # part :)</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231589#231589 2 Answer by Adam Neal for What's your favourite part of C#? Adam Neal 2008-10-23T21:27:15Z 2008-10-23T21:27:15Z <p>Nice familiar syntax, but with the convenience and power of the .NET framework behind it. Oh, curly brace, how do I love thee, let me count the ways.... :)</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231591#231591 2 Answer by Adam Lassek for What's your favourite part of C#? Adam Lassek 2008-10-23T21:27:40Z 2008-10-23T21:27:40Z <p>The syntax. Its similarity to Java and other C-style languages makes it very easy to pick up, as nearly every programmer has been exposed to it at some point. Also, I have been continually amazed at how extensible it is -- they've added generics, functional programming, Linq and other syntactic suger without compromising the integrity of the original design.</p> <p>The addition of similar features, particularly inline initialization, has felt very cumbersome in VB.Net, as was one of the reasons I switched.</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231610#231610 0 Answer by Josh Bush for What's your favourite part of C#? Josh Bush 2008-10-23T21:32:34Z 2008-10-23T21:32:34Z <p>System.Text.RegularExpressions</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231623#231623 2 Answer by Marc Gravell for What's your favourite part of C#? Marc Gravell 2008-10-23T21:38:23Z 2008-10-23T21:38:23Z <p>2 things, both compiler tricks:</p> <ul> <li>iterator blocks - the compiler does <em>such</em> a good job of making this easy (remember the C# 1.2 way of writing an iterator? shudder...)</li> <li>captured variables - in both anonymous methods and lambdas. Very elegant when you look at how it works under the bonnet.</li> </ul> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231680#231680 2 Answer by Aaron Smith for What's your favourite part of C#? Aaron Smith 2008-10-23T21:51:51Z 2008-10-23T21:51:51Z <p>The extensions methods that come with Linq. They shorten my code quite a bit.</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231709#231709 5 Answer by Chris Pietschmann for What's your favourite part of C#? Chris Pietschmann 2008-10-23T21:57:34Z 2008-10-23T21:57:34Z <p>I like it's C style syntax. This makes it much easier to glance at the code and understand it than more "wordy" languages like VB.</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231845#231845 5 Answer by Parvenu74 for What's your favourite part of C#? Parvenu74 2008-10-23T22:45:32Z 2008-10-23T22:45:32Z <p>Someone already said "the framework" but I would highlight two "sub frameworks" in particular: ADO.NET and ASP.NET. The difference in database and web programming before and after having those framework bits is like night and day. Rails has its merits along these lines, but between ASP.NET MVC, ADO.NET Entity Framework, and Linq, the clear advantage is with the .NET web framework.</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/240620#240620 2 Answer by Varun Mahajan for What's your favourite part of C#? Varun Mahajan 2008-10-27T16:57:53Z 2009-02-24T13:52:55Z <p>I don't know why, but I like <code>yield return</code></p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/581796#581796 1 Answer by ana for What's your favourite part of C#? ana 2009-02-24T13:49:18Z 2009-02-24T13:49:18Z <p>automatic properties, foreach loops, generics!</p> http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/581918#581918 0 Answer by Echostorm for What's your favourite part of C#? Echostorm 2009-02-24T14:25:12Z 2009-02-24T14:25:12Z <p>I love LINQ. I'm forgetting how to write SQL joins and I'm a happier person for it.</p>