5
votes
3answers
744 views
CSharpCodeProvider Compilation Performance
Is CompileAssemblyFromDom faster than CompileAssemblyFromSource?
It should be as it presumably bypasses the compiler front-end. …
7
votes
Repository pattern tutorial in C#
A good place is the book Applying Domain-Driven Design and Patterns by Jimmy Nilsson
My blog post: …
1
vote
Reducing duplicate error handling code in C#?
You could also use a more OO approach:
Create a base class that does the error handling and calls an abstract method to perform the concrete work. (Template Method pattern)
…
0
votes
C#.Net Prototype Methods
Using the 3.5 compiler you can use an Extension Method:
public static void Trim(this string s){ // implementation}
You can use this on a CLR 2. …
3
votes
C#: Accessing a Dictionary.Keys Key through a numeric index
You can use an OrderedDictionary.
Represents a c …
1
vote
Is the C# static constructor thread safe?
Static constructors are guaranteed to fire only once per App Domain so your approach should be OK. However, it is functionally no different from the more concise, inline version:
pr …
1
vote
Is the C# static constructor thread safe?
Andrew, that is not fully equivalent.
By not using a static constructor,
some of the guarantees about when the
initializer will be executed are lost.
Please see these links f …
2
votes
Visual Studio - new “default” property values for inherited controls
In your derived class you need to either override (or shadow using new) the property in question and then re-apply the default value attribute.
…
0
votes
How to place smaller tables in Domain & DB along with .NET entities
How about create a single relationship to an entity that also knows its type. i.e. Producer or Entry etc.
…
0
votes
6
votes
Why does C# designer-generated code (like Form1.designer.cs) play havoc with Subversion?
Here are some things to try:
Make things more modular. Use components like User Controls etc. to split forms into multiple, smaller physical files.
Use presentation layer des …
4
votes
Hidden Features of C#?
Cool trick to emulate functional "wildcard" arguments (like '_' in Haskell) when using lambdas:
(_, b, __) => b.DoStuff(); // only interested in b here
…
4
votes
12
votes
Force subclasses of an interface to implement ToString [C#]
abstract class Foo
{
public override abstract string ToString();
}
class Bar : Foo
{
// need to override ToString()
}
…
-1
votes
Can I have the Code Editor for C# in Visual Studio 2008 show a line separating methods?
This should easily be possible in Visual Studio 2010 due to the extensible, WPF-based text editor.
…
