c# - Can I create or generate an invalid System.Guid in .Net? -
can somehow invalid system.guid object created in .net (visual basic or c#). know guid.empty method not searching for. example invalid symbols or spaces or being short or longer valid 1 etc. thanks!
can guid created invalid symbols or spaces or being short or longer valid 1 etc?
no - guid 128-bit number can represented in 4 groups of hexadecimal numbers. there's no way string representation of guid
contain other 32 hex characters (and 3 dashes).
you can create string not represent valid guid
, there's no way put guid
object.
Comments
Post a Comment