Struct NiNumber
Represents a Uk National Insurance number, also referred to as NI number or NINO. A NINO is made up of 2 letters, 6 numbers and a final letter which is always A, B, C or D. (See HMRC's National Insurance Manual, section NIM39110 (https://www.gov.uk/hmrc-internal-manuals/national-insurance-manual/nim39110.)
public readonly struct NiNumber
- Inherited Members
Remarks
Marked partial as using GeneratedRegexAttribute for .NET 7.0 or above.
Constructors
NiNumber(string)
Initialises a new NiNumber instance.
public NiNumber(string niNumber)
Parameters
niNumber
stringNational insurance number as string.
Exceptions
- ArgumentException
Thrown if the supplied string is not a valid NI number.
Properties
IsUnknown
Gets a value indicating whether this NiNumber instance represents an unknown National Insurance number.
public bool IsUnknown { get; }
Property Value
Unknown
Gets the NiNumber to be used when an employee does not know their National Insurance number.
public static NiNumber Unknown { get; }
Property Value
Methods
IsValid(string)
Verifies whether the supplied string could be a valid NI number.
public static bool IsValid(string value)
Parameters
value
stringString value to check.
Returns
- bool
True if the supplied value could be a valid NI number; false otherwise.
Remarks
Although this method confirms whether the string supplied could be a valid Ni nummber, it does not guarantee that the supplied value is registered with HMRC against a given individual.
ToString()
Gets the string representation of this NiNumber.
public override string ToString()
Returns
- string
String representation of this NI number in non-spaced format.
ToString(bool)
Gets the string representation of this NiNumber.
public string ToString(bool asSpacedFormat)
Parameters
asSpacedFormat
boolTrue if spaced format is to be returned (e.g., "NA 12 34 67 C"; false otherwise.
Returns
- string
String representation of this NI number in either spaced or non-spaced format.
Operators
implicit operator string(NiNumber)
Operator for casting implicitly from a NiNumber instance to its string representation.
public static implicit operator string(NiNumber niNumber)
Parameters
niNumber
NiNumberNI number.
Returns
implicit operator NiNumber(string)
Operator for casting implicitly from a string to an instance of a NiNumber.
public static implicit operator NiNumber(string niNumber)
Parameters
niNumber
stringNI number as string.
Returns
Exceptions
- ArgumentException
Thrown if the supplied string is not a valid NI number.