Articles on this Page
- 07/27/11--11:17:_Applying aspects to 3rd...
- 08/01/11--12:28:_PostSharp: Why are my...
- 08/16/11--10:57:_Exposing internal methods...
- 01/18/12--13:02:_Learn T4 with my...
- 01/24/12--10:34:_Indexing DataTables
- 01/24/12--14:48:_Change Request Pattern...
- 01/26/12--11:55:_DataTables != Thread Safe
- 01/27/12--12:02:_PostSharp with projects...
- 01/30/12--09:51:_What I’ve learned by...
- 02/01/12--22:39:_It’s ok to mock a Person
More Channels
- Feb 23: backpage.com | salon/spa jobs |...
- Feb 23: Twitter / Favorites from jenyang
- Nov 25: Featured Listing Feed
- Feb 22: منتدى التاريخ
- Nov 25: vince's Site
- Jan 5: MJJ-FOREVER - Komentáře
- Nov 24: METABOLIC×JUNKIE
- Feb 22: 13番さんのあな ―...
- Nov 25: SPEAK NOW ♥
- Nov 25: ورنا
- Feb 20: Virginia News Press | Virginia...
- Nov 25: Reacties voor Liesbeth van der...
- Nov 25: 王金元
- Nov 25: ROR Sitemap for...
- Nov 24: アマゾン一直線...
- Feb 16: AFRO ROOTS★
- Nov 24: 通訳・翻訳ハッピーラ...
- Nov 24: 3900incomeで生涯収入を月...
- Nov 25: Uncle Ray's Corner
- Nov 25: The UPLB Jocks |...
- Nov 25: CaThY
- Nov 25: Van's Site
- Nov 25: vinci_dgreat... simply great.....
- Nov 25: vintage cabin
- Nov 25: Visiems
- Nov 25: Vicente jr.'s Site
- Nov 25: Vu
- Nov 25: wan's Site
- Nov 25: OJ
- Nov 25: صفا سیتی - safa city -...
- Dec 25: アフィリで目指せ月収20...
- Jan 23: アイのぴーちくぱーち...
- Jan 9: amorekunの気まま日記
- Nov 24: 青山さつきブログ♪
- Feb 21: 上原彩子オフィシャル...
- Nov 24: BRAND Polish Style...
- Feb 13: ♪のほほん子育て日記♪
- Feb 4: 風藤松原オフィシャル...
- Feb 9: Government: Transportation
- Feb 21: Business: Real Estate
- Nov 25: Comments for Thinking Unenslaved
- Dec 30: likeabrokentv
- Dec 23: Ищу работу няни в...
- Nov 25: Comments for UW Space Place
- Jan 12: Программные...
- Nov 25: Reaper
- Nov 25: Still Visible
- Feb 22: Vimeo / Maxim Zhestkov's videos
- Nov 25: ♠ vino ♠
- Nov 25: - Latest Popular Stories,...
|
|
Are you the publisher? Claim this channel |
|
Channel Description:
Latest Articles in this Channel:
- 07/27/11--11:17: Applying aspects to 3rd party assemblies using PostSharp (chan 1291347)
- 08/01/11--12:28: PostSharp: Why are my arguments null?! (chan 1291347)
- 08/16/11--10:57: Exposing internal methods in 3rd party assemblies for external use (chan 1291347)
- 01/18/12--13:02: Learn T4 with my PluralSight course (chan 1291347)
- 01/24/12--10:34: Indexing DataTables (chan 1291347)
- 01/24/12--14:48: Change Request Pattern – Parallelism and non thread safe collections (chan 1291347)
- 01/26/12--11:55: DataTables != Thread Safe (chan 1291347)
- 01/27/12--12:02: PostSharp with projects targeted at x64 (chan 1291347)
- 01/30/12--09:51: What I’ve learned by presenting at code camps (chan 1291347)
- 02/01/12--22:39: It’s ok to mock a Person (chan 1291347)
[Related Article: Introduction to Aspect Oriented Programming and PostSharp] There is undocumented functionality in PostSharp 2.1 (2.1.2.3 or higher) that allows us to apply aspects to assemblies that we don’t have the source code for. I’m going to show you how this works, but first I have state that this functionality is undocumented because it [...]
programmersunlimited
DummyApp-ILSpy
kick it on DotNetKicks.com
I see this question a lot. The developer has created an aspect and when they are stepping through they are seeing that the advice method arguments are null. The most common example of this is the MethodExecutionArgs.Exception. We can easily reproduce this “issue”. Example If you compile this code and step through it, the args [...]
programmersunlimited
PostSharpNullArgs1
PostSharpNullArgsILSpy1
PostSharpNullArgs2
kick it on DotNetKicks.com
To start out, I’m going to state that I don’t condone this, but if you need it then you need it. I expect to get some nasty comments about pattern violation this or encapsulation that so go ahead and send them in. This is just an extension of my previous post about modifying 3rd party [...]
programmersunlimited
kick it on DotNetKicks.com
My new course on T4 (Text Template Transformation Toolkit) has gone live and it’s ready for your viewing pleasure. If you have any feed back, please send it to me. T4 Templates on PluralSight.com This course introduces T4, Microsoft’s code generation tool that comes with Visual Studio. The Text Template Transformation Toolkit dynamically produces text [...]
programmersunlimited
dustin-davis-v1
That’s right, I’m still using DataTables. Why? Because they best fit the requirements for what I am doing. I’m also taking advantage of parallel processing via the TPL. A lot of the operations I need to do would be much easier via PLINQ and POCO’s such as joins, grouping and searching. Because I’m working with [...]
programmersunlimited
My current project makes heavy use of DataTables and parallel processing via the TPL. DataTables are not thread safe and really bite the dust hard when asked to do more than one thing at once. My project breaks up operations that need to be performed on a DataTable into groups that can be executed concurrently. [...]
programmersunlimited
The title of this post might seem really silly considering MSDN specifically says they aren’t thread safe, but there’s more to it than that. It says DataTables are not thread safe for WRITE operations which is a major ‘”Duh” statement, but in reality they are not safe for some read operations. I’ve been having some [...]
programmersunlimited
I’ve been working with a project that processes a large set of data so I’m targeting x64 only. I needed to apply my performance and logging aspects to check execution times of each method but when I went to compile I received a build error from PostSharp “Platform mismatch. You cannot run PostSharp on a [...]
programmersunlimited
ps-tab
Last year, out of no where, I decided that I wanted to present at the San Diego Code Camp after receiving the email announcing it. I had never attended a code camp but I wanted to go. Why I wanted to present, not having any previous experience with code camps, is beyond me. I’m a [...]
programmersunlimited
Winking smile
Update I worked up a video on Typemock. Check it out. Original Post Ok, that’s a bad attempt at a humorous pun, but it’s still a valid statement. TDD exploded a few years ago and has gained tremendous following and prestige in the development community. I’ve never actually practiced TDD other than tutorials and more [...]
programmersunlimited
Winking smile