UnitGenerator icon indicating copy to clipboard operation
UnitGenerator copied to clipboard

Support Parse/TryParse for Guid

Open hadashiA opened this issue 1 year ago • 0 comments

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.

hadashiA avatar Feb 08 '24 08:02 hadashiA