Hello,
I would love to cast or convert from System.String to SemVer.SemanticVersion.
I don't know enough F#, so in C# it would be something like this:
public static explicit operator SemanticVersion(string str)
{
return new SemanticVersion(str);
}
Cheers