UnitGenerator
UnitGenerator copied to clipboard
Support Parse/TryParse for Guid
ISpanParsable<Guid.>Parse cannot be called because Guid is explicily implemented ISpanParsable.
In #44, so we stopped generate it.
However, It can call the Guid.Parse implementation by defining class Proxy<T> where T : IParsable<Guid> and use as Proxy<Guid>.
This PR try to implement it and support Parse of Guid.