Search Results

17
votes
2answers
3k views

Proper way to implement IXmlSerializable?

Once a programmer decides to implement IXmlSerializable, what are the rules and best practices for implementing it? I've heard that GetSchema() should return null and ReadXml should move to the nex …
1
vote
2answers
325 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 …
1
vote
3answers
73 views

Controlling when the Static Constructor is called

In my custom attribute's static constructor, I search the loaded assembly for all classes decorated with my attribute and perform some action on them. I would like the static constr …
4
votes
2answers
70 views

Test for equality to the default value

The following doesn't compile: public void MyMethod<T>(T value) { if (value == default(T)) { // do stuff } } Error: Operato …
0
votes

C# code to copy all the tables from one mdb file to another mdb file

See this example of bulk copying: http://www.codeproject.com/KB/cs/CopyDBSchemaUsingSMO.aspx …
1
vote

How do I add linebreaks to a property in an ASP.NET control declaration?

HTML escaping is required. Replace your > with &gt; Likewise, < becomes &lt; …
0
votes

How can I serialize an object that has an interface as a property?

Implement ISerializable on your objects to control the serialization. [Serializable] public class ClassB : IB, ISerializable { public IA InterfaceA { get; set; } public void Se …
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 …
0
votes

How to change RGB color to HSV?

Note that Color.GetSaturation() and Color.GetBrightness() return HSL values, not HSV. The following code demonstrates the difference. Color original = Color.FromArgb(50, 120, …
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 …
1
vote

What’s exactly PLinq?

Parallel Extensions …
1
vote

C# console app deployment

It would be mostly the same process as the Java program. To deploy, compile the program and copy the exe from the bin folder (along with any dependencies) to the network share. To run the p …
0
votes

In c# 3.0, is it possible to add implicit operators to the string class?

What you are trying to do in your example (defining an implicit operation from string to int) is not allowed. Since an operation (implicit OR explicit) can only be defined in the class defi …

1 2 next
15 30 50 per page