1
vote
2answers
306 views
Enum Boxing and Equality
Why does this return False
public enum Directions { Up, Down, Left, Right }
static void Main(string[] args)
{
bool matches = IsOneOf(Directions.Right, Direction …
0
votes
3answers
136 views
LINQ to Twitter library comparisons
What LINQ providers exist for Twitter and how do they compare? Are there any that let you query tweets, following, and followers in addition to publishing tweets? What about relational sup …
3
votes
.NET Copy Third Party Libraries to Bin\Release
I assume you have set the "Copy Local" property on the reference to True.
To automatically copy files after a build, modify the "Post-build event command line" found in the project properti …
1
vote
What causes Windows Firewall to block an application?
Windows Firewall will only be triggered if your program is listening on a port - effectively acting as a server. System.Diagnostics.Process.Start will not trigger Windows Firewall.
Instead, …
0
votes
What is the difference between const and readonly?
Yet another gotcha: readonly values can be changed by "devious" code via reflection.
var fi = this.GetType().BaseType.GetField("_someField", BindingFlags.Instance | BindingFlags.Non …
1
vote
Is there a built-in C#/.NET System API for HSV to RGB?
There isn't a built-in method for doing this, but the calculations aren't terribly complex.
Also note that Color's GetHue(), GetSaturation() and GetBrightness() return HSL values, not HSV. …
0
votes
What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)
FindControl with built-in casting:
public static T FindControl<T>(this Control control, string id) where T : Control
{
return (T)control.FindControl(id);
}
…
0
votes
What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)
A pattern for parsing that avoids out parameters:
public static bool TryParseInt32(this string input, Action<int> action)
{
int result;
if (Int32.TryParse …
2
votes
