G
Glyn Meek
Using the following code to try and generate a GUID doesn't work.
Imports OpenNETCF.GuidEx
....
Dim myNumber As Guid
myNumber = OpenNETCF.GuidEx.NewGuid
This fails to compile with the message :
Value of type 'OpenNETCF.GuidEx' cannot be converted to 'System.Guid'.
What am I doing wrong here, as the GuidEx code specifically states that
NewGuid returns a new "System.Guid" object
Thanks
Imports OpenNETCF.GuidEx
....
Dim myNumber As Guid
myNumber = OpenNETCF.GuidEx.NewGuid
This fails to compile with the message :
Value of type 'OpenNETCF.GuidEx' cannot be converted to 'System.Guid'.
What am I doing wrong here, as the GuidEx code specifically states that
NewGuid returns a new "System.Guid" object
Thanks