I am writing / writing a value type structure and wondered if there is a manual that contains a standard template for method signatures and interface implementations. I thought I would start by looking at the System.Double documentation:
struct def
public struct Double : IComparable, IFormattable, IConvertible, IComparable<double>, IEquatable<double>
Dual methods
How is the standard approach to creating a struct value type?
thanks
source share