0
votes
Encryption in C# Web-Services
Perhaps I'm being naive, but would forcing the communication to be via https be acceptable?
I develop web services that run on 2.0 and have had success with just getting IIS to enforce https on the …
1
vote
Encryption in C# Web-Services
Perhaps I'm being naive, but would
forcing the communication to be via
https be acceptable? I develop web
services that run on 2.0 and have had
succe …
1
vote
How can I expose only a fragment of IList<>?
Depending on how you need to filter the collection, you may want to create a class that implements IList (or IEnumerable, if that works for you) but that mucks about with the indexing and access to …
4
votes
Is overloading the only way to have default function arguments in C#?
Yes, that'd be best, except you'd omit the $s on the parameter names, as others have pointed out. For those interested in the rationale behind the lack of default parameter valu …
28
votes
What’s a good way to overwrite DateTime.Now during testing?
My preference is to have classes that use time actually rely on an interface, such as
interface IClock
{
DateTime Now { get; }
}
With a concrete implementatio …
6
votes
Merging two arrays in .Net
If you can manipulate one of the arrays, you can resize it before performing the copy:
T[] array1 = getOneArray();
T[] array2 = getAnotherArray();
int array1OriginalLength = array1. …
4
votes
Is there any way to get rid of the long list of usings at the top of my .cs files?
Some people enjoy hiding the usings in a #region. Otherwise, I think you're out of luck. Unless you want to put the namespace on all your referents.
…
4
votes
Strategies for incorporating Unit Testing into an old project
First, get a copy of Working Effectively With Legacy Code and do what it says.
In general, though:
…
10
votes
Should you obfuscate a commercial .Net application?
You may not have to buy a tool - Visual Studio.NET comes with a community version of Dotfuscator. Other free obfuscation tools …
18
votes
Command Pattern : How to pass parameters to a command ?
You'll need to associate the parameters with the command object, either by constructor or setter injection (or equivalent). Perhaps something like this:
public classs DeletePersonCo …
7
votes
How do I kill a process using Vb.NET or C# ?
You'll want to use the System.Diagnostics.Process.Kill method. You can obtain the process y …
3
votes
Direct casting vs ‘as’ operator?
It really depends on whether you know if o is a string and what you want to do with it. If your comment means that o really really is a string, I'd prefer the straight …
10
votes
Has an event handler already been added?
From outside the defining class, as @Telos mentions, you can only use EventHandler on the left-hand side of a += or a -=. So, if you have the ability to modify the definin …
42
votes
7
votes
Fixed Statement in C#
The fixed statement will "pin" the variable in memory so that the garbage collector doesn't move it around …
