yesthatmcgurk

Stories kicked by yesthatmcgurk

Replacing .NET Reflector(www.blackbeltcoder.com)

submitted by scwebgroupscwebgroup(332) 1 year, 1 month ago

Good news for .NET developers who are unhappy with what Red Gate is doing with this must-have tool read more...

add a comment |category: |Views: 200

tags: another

Introducing JustTrace and JustDecompile (blogs.telerik.com)

submitted by KodefuGuruKodefuGuru(2818) 1 year, 1 month ago

Have you heard the news? New productivity tools have Just™ arrived, and it turns-out good things come in twos! JustTrace and JustDecompile have just been revealed and the betas are immediately available for download. read more...

add a comment |category: |Views: 54

tags: another

Building a better MessageBox for WP7 with the help of XNA.(michaelcrump.net)

submitted by mbcrumpmbcrump(1034) 1 year, 1 month ago

I’ve recently had the requirement to allow my user to choose between two items in my Windows Phone 7 application. The first way that I thought of tackling this was using the standard MessageBox.Show that is included with the System.Windows class and seeing if the enum provided a way to allow custom text. read more...

add a comment |category: |Views: 30

tags: another

How to use ExpandoObject Class in .NET 4.0(www.codegain.com)

submitted by codegaincodegain(2794) 1 year, 1 month ago

In this article, i will explain how to use the How to use ExpandoObject Class in .NET 4.0.The ExpandoObject class is introduced on .NET Framework 4.0 and inherited using many interfaces. read more...

add a comment |category: |Views: 71

tags: another

Afterthought: a post-compilation code injection framework(blogs.app.vc3.com)

submitted by kr4sterkr4ster(34) 1 year, 1 month ago

Afterthought allows developers to post-process .NET assemblies to add code that either cannot be added to the original source or is not convenient/efficient to do so. Examples include: Tweaking a compiled assembly for which you do not have the source code be must support/modify Adding instrumentation logic to an assembly for test purposes, which will not always be part of the release version So, what does Afterthought do? Quite simply, it allows you to: Create type amendments by subclassing Amendment<,> to describe what changes you want to make Add attributes to your types indicating which types to amend and what amendments to apply Amend properties by either adding new properties or modifying the logic of existing properties Amend methods by either adding new methods or modifying the logic of existing methods Amend constructors by either adding new constructors or modifying the logic of existing constructors Implement interfaces directly on a type leveraging existing properties/methods, adding new properties/methods, and allowing Afterthought to automatically implement everything else Configure your project to call Afterthought as a post-build step to apply the changes read more...

add a comment |category: |Views: 461

tags: another

WPF Single Instance Application – Update - Arik Poznanski's Blog(blogs.microsoft.co.il)

submitted by arikparikp(1204) 1 year, 1 month ago

Back in this post I’ve presented some code that make sure you only have one instance of your application. read more...

add a comment |category: |Views: 25

tags: another

5 of the best online code editors for fans of the cloud(blog.webdistortion.com)

submitted by squiggssquiggs(585) 1 year, 1 month ago

This collection of cloud based code editors has been created with developers in mind, and perfectly showcases just how far software has come. Checkout CodeRun for .NET developers who need to run code in the browser. read more...

add a comment |category: |Views: 70

tags: another

Using GIT on top of TFS(dotnetsurfers.com)

submitted by latishlatish(470) 1 year, 1 month ago

How to use the git-tfs bridge to work with GIT on top of TFS. read more...

add a comment |category: |Views: 58

tags: another

Common Table Expressions (CTE) – Underappreciated Features of Microsof(beyondrelational.com)

submitted by jacobsebastianjacobsebastian(3639) 1 year, 1 month ago

This is part of the series of posts that I am running under the title " Under Appreciated Features of SQL Server ". The series has been inspired by Andy Warren's editorial on SQLServerCentral.com. Did you ever wonder if you could create a temporary result set and use that within a single... read more...

add a comment |category: |Views: 40

tags: another

Dot Net Techniques(saloweblife.blogspot.com)

submitted by sal_lbsal_lb(251) 1 year, 2 months ago

Increase your dot net software development skills Active Directory Membership Provider,Software Skills, The MVP Pattern , Custom Paging GridView (Inheriting from the Base GridView Control) , LINQ to Services (LINQ to Amazon, google, bing, JSON, LDAP (Active Directory), Streams, DryadLINQ …) , Dot Net 4.0 Parallel Computing , Visual Inh......eritance In Windows Applications , Design Patterns Applicability, WCF, JSON read more...

1 comment |category: |Views: 118

tags: another

A sscanf() Replacement for .NET(www.blackbeltcoder.com)

submitted by scwebgroupscwebgroup(332) 1 year, 2 months ago

C programmers have used the sscanf() function for many years to easily parse well-structured text. Here's source code for a .NET replacement for sscanf(). read more...

add a comment |category: |Views: 62

tags: another

How To Debug WPF and Silverlight Binding Errors In Visual Studio(www.falconerdevelopment.com)

submitted by karl_falconerkarl_falconer(70) 1 year, 2 months ago

Learn about the Visual Studio settings that will reduce the amount of time spent debugging WPF and Silverlight binding errors. read more...

add a comment |category: |Views: 192

tags: another

WPF Themes now available on NuGet(www.rudigrobler.net)

submitted by TanyaGTanyaG(365) 1 year, 2 months ago

WPF Themes are now available on NuGet read more...

add a comment |category: |Views: 241

tags: another

Select IN com LINQ - Entity Framework(rodolphosa.blogspot.com)

submitted by rodolphosarodolphosa(64) 1 year, 2 months ago

how make a "select in" with LINQ and microsoft entity framework? read more...

1 comment |category: |Views: 11

tags: another

Flatten your architecture: Simplicity as a core value(ayende.com)

submitted by joycscjoycsc(1597) 1 year, 3 months ago

Ayende discusses how a seemingly well structured yet complex application architecture which follows SOLID principles isn’t always the best thing when it comes to reading data (and tuning for performance) read more...

add a comment |category: |Views: 53

tags: another

Visualize changes in your repository(blog.eweibel.net)

submitted by pweibelpweibel(25) 1 year, 3 months ago

As you perhaps know, there exists a very interesting project on Google code, with which you can visualize the activities on your repository: Gource. In this blog post I show how to use it and to create a movie. read more...

add a comment |category: |Views: 52

tags: another