yjagota

Stories kicked by yjagota

INotifyPropertyChanged, The .NET 4.5 Way(danrigby.com)

submitted by CodeM0nkeyCodeM0nkey(96) 2 months, 25 days ago

Included in the .NET 4.5 Beta comes a handy new feature, the CallerMemberName attribute. It is one of three new Caller Information attributes that have been added in this .NET Framework release. With this new functionality we can code such things a logging & tracing routines and INotifyPropertyChanged implementations without having to use string literals, slow reflection code, complex expression tree logic, or code weaving. read more...

1 comment |category: |Views: 467

tags: another

My 10 favourite Programming Quotes(www.ginktage.com)

submitted by isenthilisenthil(2309) 1 year, 3 months ago

For this post , i decided to collect some of my favourite quotes related to the programming . These programming quotes were made by some of the famous personalities in the IT industry . So , without wasting any time , here are my 10 favourite programming quotes ... read more...

2 comments |category: |Views: 1320

tags: another

Visual Studio Debugging Feature - Tracepoints(mark-dot-net.blogspot.com)

submitted by RickasaurusRickasaurus(1225) 3 years, 4 months ago

A tracepoint is simply a breakpoint that will emit a debug trace statement when it is reached. It can emit things like the current function name, stack trace, or the contents of a variable. What's really cool is that you don't have to actually stop execution. This allows you to quickly add debugging statements without the need to check out your code or remember to take the Debug.WriteLine statements out afterwards. read more...

add a comment |category: |Views: 297

tags: another

SubSonic 3 Alpha Is Ready(blog.wekeroad.com)

submitted by johnsheehanjohnsheehan(4785) 3 years, 5 months ago

SubSonic 3 is ready for Alpha. It's a pretty significant upgrade and I think I've tackled all the bugs and issues. Lofty hopes, but with your help maybe we can make this thing solid. read more...

add a comment |category: |Views: 183

tags: another

Implementing a red black tree in C#(jaltiere.com)

submitted by jaltierejaltiere(885) 3 years, 5 months ago

This article talks about how to implement a red-black tree in C#. The implementation is generic, and it also implements IEnumerable<T>. read more...

add a comment |category: |Views: 1002

tags: another

Pimp My Debugger - DebuggerDisplay Attribute(monstersgotmy.net)

submitted by bradygasterbradygaster(4897) 3 years, 5 months ago

The other day I was reading some friends code, and I saw that he used a DebuggerDisplay attribute. It allows you to create a custom view of your objects in the Visual studio debugger. This attribute is very straight forward, but very powerful in the amount of time it can save you when debugging your application. I'll show you a cookie cutter example, but you can use your imagination as to how to use this particular attribute. read more...

add a comment |category: |Views: 415

tags: another

My .NET Development Links (dev102.com)

submitted by razamitrazamit(4566) 3 years, 5 months ago

Today I am going Alvin Ashcrafts and Chris Alcocks way and publish a lists of blog posts I liked read more...

add a comment |category: |Views: 778

tags: another

Excel Xml Library 3.29 released(yogesh.jagotagroup.com)

submitted by yjagotayjagota(140) 3 years, 6 months ago

Simple Excel Export library with support for csv, tab delimited amd Excel Xml export. read more...

add a comment |category: |Views: 67

tags: another

SubSonic 3.0 Preview 1: Linq Has Landed(blog.wekeroad.com)

submitted by ChadMoranChadMoran(535) 3 years, 6 months ago

Rob Conery explains some features of SunSonic 3.0 Preview 1 read more...

2 comments |category: |Views: 417

tags: another

Filtering WPF toolkit DataGrid(yogesh.jagotagroup.com)

submitted by yjagotayjagota(140) 3 years, 6 months ago

Filter the newly released WPF toolkit datagrid using a search box. read more...

add a comment |category: |Views: 584

tags: another

Microsoft kills Linq to SQL(ayende.com)

submitted by JonSagaraJonSagara(310) 3 years, 6 months ago

Ayende (aka Oren) expresses disbelief at Microsoft's decision to effectively kill off LINQ to SQL. read more...

5 comments |category: |Views: 1388

tags: another

Firefox 3.1 beta 1 now available for download(yogesh.jagotagroup.com)

submitted by yjagotayjagota(140) 3 years, 7 months ago

Firefox 3.1 Beta 1 is now available for download. This milestone is focused on testing the core functionality provided by many new features and changes to the platform scheduled for Firefox 3.1 read more...

add a comment |category: |Views: 9

tags: another

How to place all WPF commands and related events centrally in a static(yogesh.jagotagroup.com)

submitted by yjagotayjagota(140) 3 years, 10 months ago

This article tells you how to place all WPF commands and their related CanExecute and Executed events centrally in a static class read more...

add a comment |category: |Views: 26

tags: another

Ways of making a WPF application Single Instance(yogesh.jagotagroup.com)

submitted by yjagotayjagota(140) 3 years, 10 months ago

There are many ways of making a WPF application a single instance application but such solutions are mostly difficult to find, or even if you manage to find one, they solve one problem and create another. Here are two ways of doing the same, and a solution created by me which is a hybrid of two posts I saw on the net. read more...

add a comment |category: |Views: 50

tags: another

The 20 most kicked “top-10 stories” for Developers(startbigthinksmall.wordpress.com)

submitted by lcorneliussenlcorneliussen(490) 3 years, 11 months ago

A compilation of the 20 stories dealing with top-10 links or advices that were kicked most in 2008 read more...

6 comments |category: |Views: 827

tags: another

Method level #if #endif of C#: Conditional attribute(yogesh.jagotagroup.com)

submitted by yjagotayjagota(140) 4 years, 2 months ago

A article describing C# conditional attribute read more...

add a comment |category: |Views: 17

tags: another