6
votes
Organizing Extension Methods
I organize extension methods using a combination of namespace and class name, and it's similar to the way you describe in the question.
Generally I have some sort of "primary assembly" in m …
3
votes
How do I find out what directory my console app is running in with C#?
In .NET, you can use System.Environment.CurrentDirectory to get the directory from which the process was started. System.Reflection.Assembly.GetExecutingAssembly().Location will tell you the locati …
8
votes
How do I determine darker or lighter color variant of a given color?
Rich Newman discusses HSL color with respect …
1
vote
Using multiple web projects with different languages in Visual Studio
You can do this using sub-web projects. This has been available in Visual Studio since 2005 and works with the Web Application Project style of web site. …
3
votes
System.OutOfMemoryException using C# on a large data set
I might recommend creating the MDB file and using a DataReader to stream the records into the MDB rather than trying to read in and cache the entire set of data locally. With a DataReader, the proc …
1
vote
WCF customheader or messagebody for context?
I would say if it's only one or two operations that need it, make it part of the data contract - sort of like making it a parameter to a method call. If every operation requires it, put it in the h …
2
votes
(Physical)(Installed) path of DLL installed to the GAC.
If something gets put in the GAC, it actually gets copied into a spot under %WINDIR%\assembly, like
C:\WINDOWS\assembly\GAC_32\System.Data\2.0.0.0__b77a5c561934e089\System.Data.dll
…
