0
votes
What is the value of an anonymous unattached block in C#?
In C# -- like c/c++/java -- braces denote a scope. This dictates the lifetime of a variable. As the closing brace is reached, the variable becomes immediately available for a garbage collection. In …
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
Determine value of object in C#
Do you mean null or string.empty, if you're talking about strings?
if (String.IsNullOrEmpty(obj as string)) { ... do something }
Oisin
…
0
votes
Serializing Name/Value Pairs in a Custom Object via Web Service
Have a look into the System.Xml.Serialization.XmlSerializerAssemblyAttribute attribute. This lets you specify a custom class-level serializer. You'll be able to spit out whatever XML you like. …
-1
votes
Integrated Security
When you say "remoting instead of IIS," what exactly do you mean? A remoting endpoint (the server end) is typically hosted in IIS since this gives you lots of stuff for free, like authentication, s …
1
vote
C# Assembly.Load vs Assembly.ReflectionOnlyLoad
The ReflectionOnly methods are the only way you can load a specific Assembly on disk to examine without going via the usual Load/LoadFrom rules. For example, you can load a disk-based assembly with …
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?
…
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 …
3
votes
Using The StackTrace To Infer The Caller Of A Method
Another problem is that the compiler may "inline" your method in the optimisation process, e.g.
void MethodA() {
MethodB();
}
void MethodB() {
foo();
}
bec …
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
…
2
votes
How to add item to the beginning of List<T>?
Update: a better idea, set the "AppendDataBoundItems" property to true, then declare the "Choose item" declaratively. The databinding operation will add to the statically declared item.
…
0
votes
System.Drawing in Windows or ASP.NET services
It might be something to do with the GDI subsystem needing an STA thread. If this is the case, investigate specifying ASPCOMPAT=TRUE in your @PAGE directive for the aspx page involved. This will ru …
0
votes
C#: How do you specifiy where to start reading in a file when using StreamReader?
Well if the content is just plain text like that, you should use the StreamReader's ReadLine method.
…
