I'm writing/written a value type struct and was wondering if there was a guide that contains a standard template for method signatures and interface implementation. I thought I'd start by looking at the System.Double documentation:
public struct Double : IComparable, IFormattable,
IConvertible, IComparable<double>, IEquatable<double>
Is there like a standard approach to creating a value type struct?
Thanks