7
votes
What .net files should be excluded from source control?
Depends on the project, but I've got the following for a Silverlight + WPF project in my .gitignore:
# Visual Studio left-overs
*.suo # 'user' settings like 'which file is op …
3
votes
Performance : encapsulating a string in a struct?
The string is always located on the heap, so it wouldn't help. Putting the reference to the string in the struct can only make it slower, since it needs an extra derefence. But this won't be measur …
1
vote
Has anyone run performance benchmarks comparing LINQ
We had a horrible experience with ADO.NET Entities performance using LINQ: the inheritance slows down things immensely. A small database (say, 100 records or so) with 20 classes of which most were …
1
vote
.Net Framework Inheritance memory managment, Plz Help ?
It goes only one way: System.IO.File will allocate base class of file + size of File itself, but not other descendants of the base class. So its not pretty heavy and your answer is correct.
…
