Search Results

2
votes
6answers
547 views

Why isn’t the StringBuilder class inherited from Stream?

I'm just curious about this. It strikes me that the behavior of a StringBuilder is functionally (if not technically) the same as a Stream -- it's a bin of data to which other data can be added. …
0
votes
2answers
60 views

How do you ensure .Net always searches for a namespace from the root of the namespace tree?

Is there a way to tell .Net to search for a namespace from the root of the namespace tree? Say I have these two, completely independent, namespaces: Apple.Orange.Ba …
1
vote
1answer
209 views

When using the XPath binding expression, can you get back InnerXml rather than InnerText?

I'm binding a control to an XmlDocument and using the "XPath" binding expression to output the data: <div class="Bio"><%# XPath("Biography") %></div> …
3
votes
6answers
314 views

How can you throttle a long-running command-line EXE to avoid pegging the CPU?

I have a command line EXE written in C#. It's log parser that grinds through several GB worth of log files every night. It pegs the processor at 100% for quite a while. Not ideal. …
5
votes
6answers
288 views

When should you use a field rather than a property?

Can anyone clearly articulate when you use a field and when to use a property in class design? Consider: public string Name; Or: private st …
2
votes
2answers
194 views

How do you load embedded assemblies that you’ve bundled in with your main assembly?

What's the best practice for bundling one assembly in another? I have an assembly I'm distributing, but I have a couple third-party assemblies that I use in it, and I don't want to have to distrib …
3
votes
2answers
377 views

How do you pass parameters by ref when calling a static method using reflection?

I'm calling a static method on an object using reflection: MyType.GetMethod("MyMethod", BindingFlags.Static).Invoke(null, new object[] { Parameter1, Parameter2 }); …
1
vote
3answers
444 views

How do you use GAC’d assemblies as references with csc.exe?

I'm compiling from csc.exe (well, CruiseControl is...), and I need to reference a DLL in the GAC. I do not have the correct version of this DLL as a simple file, but there is a correct version in …
1
vote
5answers
190 views

What’s the opposite of “is”?

if(myVariable is SomeType) Out of nothing but curiosity, what's the opposite of that? I want to do something like: if(!myVariable is SomeType) if(myVariab …