2
votes
5answers
1k views
Starting a process with credentials from a Windows Service
I have a Windows service that runs as mydomain\userA. I want to be able to run arbitrary .exes from the service. Normally, I use Process.Start() and it works fine, but in some cases I want to run t …
0
votes
1answer
191 views
Programmatically configuring log4net to write the same messages to two separate files
Right now, I'm programmatically configuring log4net by creating a RollingFileAppender instance then calling BasicConfigurator.Configure(). This is working great, but I'm trying to create two identi …
3
votes
What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)
Pythonic methods for Dictionaries:
/// <summary>
/// If a key exists in a dictionary, return its value,
/// otherwise return the default value for that type.
/// </summary …
0
votes
Overloaded method calling overloaded method
If OuterMethod always calls InnerMethod, and InnerMethod only accepts an int or string, then OuterMethod<T> doesn't make any sense.
If the only difference is that one calls I …
0
votes
C# Is String in Array
Arrays are, in general, a poor data structure to use if you want to ask if a particular object is in the collection or not.
If you'll be running this search frequently, it might be worth it …
0
votes
NTFS Alternate Data Streams - .NET
There is no native .NET support for them. You have to use P/Invoke to call the native Win32 methods.
To create them, call …
2
votes
Compress a folder using NTFS compression in .NET
Using P/Invoke is, in my experience, usually easier than WMI. I believe the following should work:
private const int FSCTL_SET_COMPRESSION = 0x9C040;
private const short COMPRESSION …
1
vote
Long lists of pass-by-ref parameters versus wrapper types.
Worrying about the relative execution speed of those two options is probably a premature optimization. Focus on getting the algorithm correct first, and having clean, maintainable code. When that's …
3
votes
How do I refer to the directory where my .net program is installed?
Assembly.GetExecutingAssembly().Location will give you the path to the currently executing assembly.
However, writing to that location will cause problems for users running on Vista, Server …
0
votes
What is the most readable use of String.Format for long strings with many parameters?
Assuming you can use LINQ, you can shove your arguments into a Dictionary<string, string>, then join the arguments together:
Dictionary<string, string> args …
