0
votes
How to spread tcplistener incoming connections over threads in .NET?
There's a great example in the O'Reilly C# 3.0 Cookbook. You can download the accompanying source from [http://examples.oreilly.com/9780596516109/CSharp3_0CookbookCodeRTM.zip][1]
…
2
votes
How do I speed up data retrieval from .NET AD within ColdFusion
It's been a long time since I touched CF, but I can give some hints in pseudo-code. For one thing, this expression is extremely inefficent:
#theObject.Get_Item(row).Get_Properties().Get_Ite …
0
votes
When would you use delegates in C#?
The first line of usage is to replace the Observer/Observable (events) pattern. The second, a nice elegant version of the Strategy pattern. Various other usages can be gathered, though more esoteri …
2
votes
Is there a good graph (not charting) visualization API for .Net?
You should check out Microsoft Research's NetMap
http://www.codeplex.com/NetMap
".NetMap is a pair of applications for vi …
0
votes
Why does adding a project reference break my build ?
A few things to check:
Ensure "copy local" is TRUE for all project references
If any are set to false, check the GAC for old builds of your libraries
If all th …
4
votes
How to determine if .NET assembly was built for x86 or x64?
Look at System.Reflection.AssemblyName.GetAssemblyName(string assemblyFile)
You can examine assembly metadata from the returned AssemblyName instance:
[36] > [reflection …
14
votes
What’s Your Biggest Visual Studio 2008 Annoyance?
Windows Workflow Designer.
It's a crippled, one-legged, drunk, poisened, hippopotamus carrying fifteen elephants slow. It's an absolute dog. It's really the shining example of why shifting …
0
votes
How can a hashtable be bound to a drop down list?
myCtrl.DataSource = myHashtable
myCtrl.DataBind()
Example source of bindable control:
<itemtemplate>
<%# DataBinder.Eval(Container.DataItem, " …
1
vote
How do I get PowerShell to grab a logfile when it overflows?
There is a particular event that occurs in the application or system eventlogs when they are considered "full" (according to the OverflowAction configured):
…
0
votes
Do you use the “this” operator in C#?
Tools like Resharper have a built in hint saying "redundant qualifier," but I disagree with it and quickly disable the rule.
I always use the this qualifier because it lets me know at a gla …
2
votes
How frequent is DateTime.Now updated ? or is there a more precise API to get the current time?
IF you take a snap shot of the current time before you do anything, you can just add the stopwatch to the time you stored, no?
…
0
votes
.NET (web) How to execute some code after all events are handled?
Check out the OnPreRender event in the page lifecycle.
-Oisin
…
1
vote
is it safe to keep database connections open for long time
You should not keep connections open like this, generally speaking. .NET has an ADO.NET connection pooling system which does exactly what you're trying to do, and does it a lot better. ;-)
…
1
vote
How best to communicate between AppDomains?
A cross-domain delegate only allows a void method with zero parameters, and it's probably not what you think it is. It's only barely useful as a simple callback for notification purposes from one a …
1
vote
Why do I get E_ACCESSDENIED calling a COM+ method from a proxy?
Try looking at the COM server's remote activation permissions on the remote machine via dcomcnfg.exe (should open up MMC snapin).
-Oisin
…
