|
|
Jachman
Jachman
 |
|
Stories submitted by Jachman
|
|
submitted by
Jachman
2 months, 22 days ago
jachman.wordpress.com — Today I had to write a method for splitting Pascal Cased property names to readable text strings. Because I found a small and stylish solution, I want to show you. read more...
add a comment
|
category: C# | Views: 9
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Jachman
3 months ago
jachman.wordpress.com — When you search the web for webservice deployment you always hear: “Setup a Web Setup project …” Sure, that’s the easiest solution, but not if you see it in a wider scope. So here’s the manual way of deploying a .NET WebService (and it’s a really simplay way) read more...
|
|
tags:
WebServices | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Jachman
9 months, 19 days ago
jachman.wordpress.com — Today I want to show how to extract data from Microsoft Excel Files. I needed it myself the time I looked for a solution to create some testdata for my application. Instead of putting the testdata into a database - which would be very hard to handle - I decided to put them into an Excel file. read more...
add a comment
|
category: C# | Views: 3
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 11 months, 1 day ago, submitted by
Jachman
11 months, 1 day ago
jachman.wordpress.com — Sometimes you have duplicated code, that is not easy to remove with “ordinary” coding approaches. Think about the following example. You have two or more methods that needs to be encapsulated with try-catch blocks. read more...
add a comment
|
category: C# | Views: 3
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Jachman
1 year ago
jachman.wordpress.com — Last days I tried to write a sql server report. In the beginning everything was fine. Until - I wanted to call a custom method in a custom assembly of my project. read more...
add a comment
|
category: C# | Views: 3
|
|
tags:
Services, Reporting, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 1 month ago, submitted by
Jachman
1 year, 1 month ago
jachman.wordpress.com — Long time I asked myself, for what the heck I could use the ?? operator. Last days I found the perfect scenario for using this operator. read more...
2 comments
|
category: C# | Views: 1
|
|
tags:
notagain, C#, operator, .Net | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Jachman
1 year, 2 months ago
jachman.wordpress.com — Using this toolkit enables you to show public holidays for several countries within your .NET application. This can be interessting for many use cases. Think about calendars, appointments and so on. read more...
add a comment
|
category: C# | Views: 0
|
|
tags:
Framework, .Net, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Jachman
1 year, 2 months ago
blog.objectmapper.net — Today I’m proud to release version 2.0 of the AdFactum ObjectMapper .NET. This major release covers new key features like a first LINQ implementation, new projection classes and several bug fixes regarding the XML persister. read more...
add a comment
|
category: Products | Views: 1
|
|
tags:
ObjectMapper, OpenSource, .Net, ORM, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Jachman
1 year, 2 months ago
jachman.wordpress.com — The new Sandcastle CTP isn’t well documented at all and the documentation that can be found is useless, because the Sandcastle September CTP 2007 changed alot compared to old CTPs for that the documentation has been written.
This article shows how to build your documentation with the new Sandcastle September CTP and NANT. read more...
add a comment
|
category: C# | Views: 4
|
|
tags:
Microsoft, NAnt, CTP, C#, Sandcastle | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 2 months ago, submitted by
Jachman
1 year, 2 months ago
jachman.wordpress.com — C# Generics are powerful, but there are not many generic classes beyond List and Dictionary. Especially for Set Operations Generics are missing.
That’s whay I created a small class for Set Operations called Set that contains the basic Set Operations, like Union, Intersect and Difference. read more...
1 comment
|
category: C# | Views: 17
|
|
tags:
Generics, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Jachman
1 year, 3 months ago
jachman.wordpress.com — There are many tools that can be used for profiling software. These tools are a great enrichment for our job, but sometimes they are oversized. Sometimes, you need a small solution for a particular piece of code. If you find yourself at this point, I will show you a solution here. read more...
add a comment
|
category: C# | Views: 100
|
|
tags:
Performance, .Net, Log4Net, C#, Profiling | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Jachman
1 year, 3 months ago
jachman.wordpress.com — Sometimes in history a star flashes for a short moment to shade for the next. The same happened to the class ObjectDumper which is quite a handy class for writing NUnit Test cases - published one time in a microsoft sample - and after that never found again.
The performance of that class used with NUnit was terrible, because the ObjectDumper wrote directly to the Console Out Stream. That forced NUnit to refresh the UI again and again. I improved the ObjectDumper, so that it takes a StringBuilder and write the complete output to the Console in one step. That’s faster.
You can output the content of every object using the following syntax:
ObjectDumper.Write (object you want to output); read more...
add a comment
|
category: Unit Testing | Views: 27
|
|
tags:
.Net, UnitTesting, Testing, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Jachman
1 year, 9 months ago
blog.objectmapper.net — This tutorial shows how to use the AdFactum ObjectMapper .NET in an enterprise environment. Therefore we assume that we have several threads (e.g. IIS sessions) that will access business services. Furthermore we are using cascading transactions. So continue reading. read more...
add a comment
|
category: C# | Views: 1
|
|
tags:
ORM, .Net, C#, ObjectMapper, OpenSource | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Jachman
1 year, 9 months ago
blog.objectmapper.net — Announcing the new release of the ObjectMapper .NET. This release is a hot fix for the last version which had a small bug. In some special cases the ObjectMapper .NET wasn’t been able to deep load the object. read more...
add a comment
|
category: Products | Views: 0
|
|
tags:
ORM, .Net, C#, ObjectMapper, OpenSource | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads by The Lounge
|