What's your favourite part of C#? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T01:08:17Zhttp://stackoverflow.com/feeds/question/231485http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c2What's your favourite part of C#?tdyen2008-10-23T20:54:11Z2009-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#2314962Answer by Totty for What's your favourite part of C#?Totty2008-10-23T20:56:16Z2008-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#23150310Answer by Jon Skeet for What's your favourite part of C#?Jon Skeet2008-10-23T20:57:55Z2008-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#2315043Answer by Gabriel Isenberg for What's your favourite part of C#?Gabriel Isenberg2008-10-23T20:58:15Z2008-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#2315073Answer by Adam Davis for What's your favourite part of C#?Adam Davis2008-10-23T20:58:48Z2008-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#2315087Answer by Rayne for What's your favourite part of C#?Rayne2008-10-23T20:58:49Z2008-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#2315106Answer by Ray for What's your favourite part of C#?Ray2008-10-23T20:59:10Z2008-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#23151513Answer by vfilby for What's your favourite part of C#?vfilby2008-10-23T21:01:07Z2008-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#2315203Answer by FlySwat for What's your favourite part of C#?FlySwat2008-10-23T21:01:58Z2008-10-23T21:01:58Z<p>Delegates!</p>
http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231545#2315452Answer by Nick for What's your favourite part of C#?Nick2008-10-23T21:10:16Z2008-10-23T21:10:16Z<p>Reflection and metadata.</p>
http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231555#2315556Answer by CMS for What's your favourite part of C#?CMS2008-10-23T21:12:24Z2008-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#2315742Answer by Damir for What's your favourite part of C#?Damir2008-10-23T21:18:34Z2008-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#2315822Answer by Otm Shank for What's your favourite part of C#?Otm Shank2008-10-23T21:23:01Z2008-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#2315831Answer by Kon M for What's your favourite part of C#?Kon M2008-10-23T21:24:38Z2008-10-23T21:24:38Z<p>I like the # part :)</p>
http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231589#2315892Answer by Adam Neal for What's your favourite part of C#?Adam Neal2008-10-23T21:27:15Z2008-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#2315912Answer by Adam Lassek for What's your favourite part of C#?Adam Lassek2008-10-23T21:27:40Z2008-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#2316100Answer by Josh Bush for What's your favourite part of C#?Josh Bush2008-10-23T21:32:34Z2008-10-23T21:32:34Z<p>System.Text.RegularExpressions</p>
http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/231623#2316232Answer by Marc Gravell for What's your favourite part of C#?Marc Gravell2008-10-23T21:38:23Z2008-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#2316802Answer by Aaron Smith for What's your favourite part of C#?Aaron Smith2008-10-23T21:51:51Z2008-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#2317095Answer by Chris Pietschmann for What's your favourite part of C#?Chris Pietschmann2008-10-23T21:57:34Z2008-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#2318455Answer by Parvenu74 for What's your favourite part of C#?Parvenu742008-10-23T22:45:32Z2008-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#2406202Answer by Varun Mahajan for What's your favourite part of C#?Varun Mahajan2008-10-27T16:57:53Z2009-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#5817961Answer by ana for What's your favourite part of C#?ana2009-02-24T13:49:18Z2009-02-24T13:49:18Z<p>automatic properties, foreach loops, generics!</p>
http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/581918#5819180Answer by Echostorm for What's your favourite part of C#?Echostorm2009-02-24T14:25:12Z2009-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>