1
vote
Custom Compiler Warnings
I don't think you can. As far as I know support for ObsoleteAttribute is essentially hardcoded into the C# compiler; you can't do anything similar directly.
What you might be able to do is …
1
vote
Sharing application preferences across multiple projects
Use the ConfigSource directive to have all of the settings loaded from …
2
votes
How can a windows service programmatically restart itself?
I don't think you can in a self-contained service (when you call Restart, it will stop the service, which will interrupt the Restart command, and it won't ever get started again). If you can add a …
1
vote
.Net 3.5 Windows Forms Application: x86 vs x64 load times on 64 bit Vista
Note that according to Microsoft, .Net 3.5 SP1 included a fair bit of work on startup performance (up to a 40% improvement for some apps), so you might see if that helps at all as well.
…
0
votes
Why does global.asax change sql connection?
Check to see if the myapp.Global class accesses either the Membership, Role, or Profile providers; the default settings for each use a local SQL server connection.
…
0
votes
Are event callbacks with (object, EventArgs) parameters a holdover from 1.1 and WinForms?
I don't think FxCop has been updated in a good long while now; have you tried it with the VS2008 Code Analysis tools (the successor to FxCop)?
…
0
votes
Is there a simple & extendable Data Class for ASP.NET?
Your question is too vague. What do you mean by "data class"? What do you want/need it to do for you?
Are you looking for something like DataContract?
…
2
votes
A clean way of generating QueryString parameters for web requests
Use HttpUtility.ParseQueryString, as someone suggested (and then deleted).
This will work, because the return value from that method is actually an HttpValueCollection, which inherits NameV …
2
votes
Will T-Sql SET parameters be reset with pooled .NET connections?
By default (that is, unless you include "Connection Reset=false" in the connection string), .NET resets the connection with the sp_reset_connection stored procedure before reusing it; …
4
votes
Safe version of Path.Combine
System.IO.Path.GetFullPath?
To expand: use Path.Combine, then call GetFullPath on the re …
