2
votes
5answers
954 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 …
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
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
Setting dllimport programatically in c#
One alternative option is to have both the 32- and 64-bit versions of the unmanaged DLL have the same name, but have them live in separate folders in your build output (say, x86\ and x64\).
…
2
votes
Changing log4net FileAppender whilst logging
From the log4net FAQ:
Many developers are confronted with the problem of distinguishing the lo …
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 …
1
vote
How to create ebook DRM reader and distribution platform?
If your company is developing a brand-new product in a field they're unfamiliar with, they need someone with some modicum of knowledge about that field.
If they just decided "hey, …
