DotNetKick.com is an open-source project. Please report any bugs and let us know your great suggestions. Currently running svn revision 620 (rss)

Kick Spy!, Kick Zeitgeist and Kick Widgets

KirillOsenkov Subscribe to this feed
KirillOsenkov
Profile Kicked Submitted Comments Tags Friends Kicked By Friends Submitted By Friends

Stories kicked by KirillOsenkov
3
kicks
submitted by schalkvanwyk 11 days, 2 hours ago

blogs.msdn.com — Here are some more unsorted thoughts on generics to continue this post (which has some interesting comments too). read more...

Add a comment add a comment | category: | Views: 5
tags: | tag it

19
kicks
published 9 days ago, submitted by CharlieCalvert 11 days, 14 hours ago

blogs.msdn.com — Matthew Manela, an engineer on our Online Tools team, has created and released a free, community-based tool called the Snippet Designer. His tool is a Visual Studio add-in that allows you to create and edit snippets from inside the IDE. read more...

Add a comment 3 comments | category: | Views: 337
tags: | tag it

5
kicks
submitted by CharlieCalvert 15 days, 15 hours ago

blogs.msdn.com — There are times when it is helpful to know the line number of a node in an XML file. Reporting the line number of a node can be a helpful to users, particularly if you want to report an error. It can also be convenient to search for a node by line number, but that can, of course, be a very risky endeavor, as documents can be modified accidentally, and their line numbers changed without notice. read more...

Add a comment add a comment | category: | Views: 10
tags: | tag it

5
kicks
submitted by CharlieCalvert 1 month, 26 days ago

blogs.msdn.com — We are continuing our series of posts about proposed features for the next version of Visual Studio. This post focuses on a new feature called Document Map Margins (DMM). Developers frequently work with huge source files that are difficult to navigate. The proposed DMM feature is designed to make it easier for you to find and track important features in your code and to visualize the overall structure of your file. read more...

Add a comment add a comment | category: | Views: 10
tags: | tag it

3
kicks
submitted by volume4 2 months ago

dotnet.dzone.com — A C# MVP since 2003, Jon Skeet wrote this reference card for use in whatever type of C# project you're working on, and whichever version of C# you're using. It covers many topics, from the basics of string escape sequences to the brave new world of query expressions and LINQ in C# 3. Features include String Literals, Delegates, Declaring Events, Generics, Extension Methods, Query Expressions (C# 3), Hot Tips and more. read more...

Add a comment 1 comment | category: | Views: 10
tags: | tag it

4
kicks
submitted by CharlieCalvert 2 months, 16 days ago

blogs.msdn.com — In this 12 minute video I talk with C# IDE PM DJ Park about a new feature in Visual Studio 2008 Service Pack 1 beta called Live Semantic Errors or Squiggles. This feature gives an increased level of live feedback on potential errors that might be found in your code. read more...

Add a comment 1 comment | category: | Views: 17
tags: | tag it

3
kicks
submitted by CharlieCalvert 2 months, 16 days ago

blogs.msdn.com — Welcome to the 45th Community Convergence. I recently reached the two year mark here at Microsoft, and that means it is probably time for me to slip in some changes to my routine. In this post I'll begin that process by taking Community Convergence in a new direction. read more...

Add a comment add a comment | category: | Views: 3
tags: | tag it

14
kicks
published 2 months, 12 days ago, submitted by CharlieCalvert 2 months, 17 days ago

blogs.msdn.com — The LINQ aggregate operators allow you to perform simple math operations over the elements in a sequence. This post is designed to walk you through those operators, and give you an overview of how to use them. read more...

Add a comment add a comment | category: | Views: 127
tags: | tag it

37
kicks
published 2 months, 17 days ago, submitted by mfmaneef 2 months, 18 days ago

aneef.net — Create PDF with C# on the fly read more...

Add a comment add a comment | category: | Views: 758
tags: | tag it

27
kicks
published 2 months, 17 days ago, submitted by brianjlowry brianjlowry 2 months, 19 days ago

lowrymedia.com — When designing architectures in .NET, I frequently use interfaces for parameter types in my method signatures. This post will help to explain why I choose to do this and the benefits of coding in this manner. read more...

Add a comment 1 comment | category: | Views: 574
tags: | tag it

25
kicks
published 2 months, 20 days ago, submitted by igoro 2 months, 21 days ago

igoro.com — Skip lists are a fascinating data structure: very simple, and yet have the same asymptotic efficiency as much more complicated AVL trees and red-black trees. In this article, I discuss the asymptotic efficiency of operations on skip lists, the ideas that make them work, and their interesting use cases. And, of course, I give you the source code for a skip list in C#. read more...

Add a comment add a comment | category: | Views: 339
tags: , | tag it

24
kicks
published 2 months, 21 days ago, submitted by Anastasiosyal Anastasiosyal 2 months, 23 days ago

anastasiosyal.com — C# 3.0 still hasnt sunk in yet for most, yet there already seems to be some buzz about c# features we would like to see in the future. Here is my take on the 4 language features i would like to see implemented in C# read more...

Add a comment 6 comments | category: | Views: 634
tags: | tag it

15
kicks
published 2 months, 25 days ago, submitted by crpietschmann crpietschmann 2 months, 26 days ago

pietschsoft.com — Extension Methods are one of the coolest features that have been added in .NET 3.5. I've heard arguments that there is no reason to use them, and the only reason Microsoft added them is to enable the ability to buid LINQ. Well, I do not entirely agree with that statement; in fact, I have found a cool way to use Extension Methods to enhance the System.Enum object since it cannot be inherited. Even though Enum can not be inherited, it can be extended using Extension Methods. Here's the code to an Extension Method that extends the LocalizationMarket Enum with the ToDescriptionString() method that returns the DescriptionAttributes value for the given enum value. read more...

Add a comment 3 comments | category: | Views: 417
tags: , , , , | tag it

23
kicks
published 2 months, 25 days ago, submitted by AlexCuse AlexCuse 2 months, 26 days ago

codebetter.com — Lots of good extension methods here for C# read more...

Add a comment 2 comments | category: | Views: 586
tags: | tag it

30
kicks
published 2 months, 27 days ago, submitted by yesthatmcgurk yesthatmcgurk 2 months, 27 days ago

blogs.msdn.com — ... and some dude from the VB team. Anders and the guys in room 2543, building 41 (where C# was born) talk about the new features that will be in the next version of C#. I so wanted to blogspam this one. Enjoy your direct link. read more...

Add a comment add a comment | category: | Views: 655
tags: | tag it

15
kicks
published 2 months, 27 days ago, submitted by CharlieCalvert 2 months, 28 days ago

blogs.msdn.com — This is a second post on the LINQ Set operators, the first being published while LINQ was still in beta. As mentioned in the previous post, there are four LINQ set operators: Union, Intersect, Distinct and Except. Like the other 50 LINQ operators, these methods are designed to allow you to query data which supports the IEnumerable<T> interface. Since all LINQ query expressions, and most LINQ queries, return IEnumerable<T>, these operators are designed to allow you to perform set operations on the results of a LINQ query. In this post I give four highly simplified examples of how to use each of the operators, and then end with a more complex example that shows how the operators might be used in a real world setting. read more...

Add a comment add a comment | category: | Views: 175
tags: | tag it

 

Sponsored Link: www.carlist.ie

Search:

Ads via The Lounge