I would like to declare a C# value type that only allows strings of a particular length. Said length should be validated at compile time. This is doable in Delphi as:
type
TString10 = string[10];
and if I use said tyoe as:
var
sTen : TString10;
sTen := '0123456789A'; //This generates a compile time error
Now as I understand it you cannot declare a string type in C# of a fixed length. Various solutions I have seen don't offer compile time checking for C#. As I am prepared to declare my own C# value type struct is this something I can achieve with .Format()?
All help and pointers greatly appreciated.
PS. I really would like to achieve compile time checking of string length assignments, so please no "Why are you....?"
string[10]is a fixed length short string. Read all about it here. Short string in Delphi is an anachronism that is never used in modern code. I can't understand why you hold it up as a paragon of virtue. It isn't. – David Heffernan Aug 5 '11 at 8:42