7
votes
What is the purpose of “remove unused references”
It prevents the CLR from loading the referenced module at runtime. This will reduce startup time (since it takes time to load each module). Depending on the size of the module it might noticeabl …
1
vote
Dependencies and references - What exactly should I reference?
You only need to add references that are directly used by your project.
For private assemblies (those not in the GAC) Visual Studio will, by default, copy referenced assemblies (and their d …
1
vote
Is anyone successfully using registration-free COM with .NET components?
We're using registration-free COM for both native and .NET components. We decided to use a fixed assembly version number for these components (mainly to prevent cluttering the registry when repeat …
0
votes
Split old .NET code into designer partial class
AFAIK there isn't anything built in to do this automatically. I could definitely use an automated way to do this.
…
1
vote
Open source RSS parser
I recently used FeedDotNet from codeplex. It was very simple to use, took very little time to get working.
…
0
votes
Any picture Gallery Control for .NET 1.1 in WinForms?
AFAIK there's nothing built in to display a Gallery but if you're willing to use 2.0 you can throw one together with the TableLayoutPanel pretty easily.
…
0
votes
Change the icon for a .net executable post-build?
Check out ResHacker.exe or XN Resource Editor. I haven't used XN Resource Editor but have used ResHacker to change the icon resource in a PE.
…
0
votes
Using WebClient in C# is there a way to get the URL of a site after being redirected?
HttpWebRequest.AllowAutoRedirect can be set to false. Then you'd have to manually http status codes in the 300 range.
// Create a new HttpWebRequest Object to the mentioned URL.
Ht …
0
votes
How do I work with dial-up (RAS) connections in Windows using C#/.NET?
One way to do this is through Interop around RAS. RasDialDlg() can be used to open a dial-up networking connection without displaying the dialog box. Use RasHangUp() to disconnect.
RasEnu …
14
votes
Parsing a string in C#; is there a cleaner way?
Regexes are so useful that you'll save yourself a ton of heartache biting the bullet and learning them. Not the whole shebang, just the basics.
One regex that'll work is "\w+\((.*)\)" - js …
3
votes
Can a Thread be executed as another user? (.NET 2.0/3.5)
AFAIK the only way to impersonate another user is via the unmanaged win32 apis (e.g., LogonUser())... You can call them through interop.
There's a code sample of this at …
0
votes
What causes System.Drawing.Printing.PrinterSettings.InstalledPrinters to throw Win32Exception “RPC server not available”?
Either the RPC service is off or Windows Firewall is blocking it.
…
0
votes
Multiple assertions when unit testing constructor?
As long as your error message is clear I wouldn't worry too much about it...
…
1
vote
2
votes
Programming ActiveSync on Windows Mobile
If you can work with the most recent compact framework then you can use the WindowsMobile Class Library.
I …
