1
vote
When do you use the “this” keyword?
Another somewhat rare use for the this keyword is when you need to invoke an explicit interface implementation from within the implementing class. Here's a contrived example:
class …
3
votes
I need a helper method to compare a char Enum and a char boxed to an object
static void Main(string[] args)
{
object val = 'O';
Console.WriteLine(EnumEqual(TransactionStatus.Open, val));
val = 'R';
Console.WriteLine(EnumEqua …
0
votes
C# class separation into a header and a .cs file
Try the Class View. When you click on each class you will get the members listed.
…
2
votes
Is there a better way to initialize a Hastable in .NET without using Add method?
The exact code you posted:
Hashtable filter2 = new Hashtable()
{
{"building", "A-51"},
{"apartment", "210"}
};
Comp …
10
votes
Auto-generation of .NET unit tests
Take a look at Pex. Its a Microsoft Research project. From the website:
Pex generates Unit Tests from hand-written Parame …
7
votes
Open source C# projects that have high code quality?
I found the source for ASP.NET MVC to be a worthwhile read. At the time of writing, the latest source is avaliable to download on the …
1
vote
C# - Is there a better alternative than this to ‘switch on type’?
If you were using C# 4, you could make use of the new dynamic functionality to achieve an interesting alternative. I'm not saying this is better, in fact it seems very likely that it would be slowe …
1
vote
NHibernate: using an existing public int field as record Id
I've also answered this question on the mailing list (it was cross posted there) but I thought it wo …
0
votes
How to map Type with Nhibernate (and Fluent NHibernate)
I'm curious, why don't you do this instead
public class DataType
{
...
private string _typeOfContent;
public virtual Type TypeOfContent
{
get …
0
votes
Read from .msg files
There is code avaliable on CodeProject for reading .msg files without COM. See here.
…
2
votes
Fluent NHibernate and Schema update/execute - indexes on foreign keys
I think the 'index' attribute on a column mapping element is what you are after. If you're on the latest version of FNH, you can set this for a one-to-many like so:
HasMany(x => …
