Question : System.Guid.NewGuid() created empty guid... why?

Dim symbol_guid As Guid = System.Guid.NewGuid()

why when i debug above code i get empty string?
thanks

Answer : System.Guid.NewGuid() created empty guid... why?

Use the ToString() method instead?
1:
2:
    Dim symbol_guid As String = System.Guid.NewGuid().ToString
    '                  ^^^^^^                        ^^^^^^^^^
Random Solutions  
 
programming4us programming4us