J Jeff Lynch Aug 29, 2004 #1 How do I create a new GUID programatically like the "Create Guid" tool does in VS.NET?
A Arne Janning Aug 29, 2004 #2 Jeff Lynch said: How do I create a new GUID programatically like the "Create Guid" tool does in VS.NET? Click to expand... Hi Jeff, use NewGuid() of the System.Guid-Structure. [C#] Guid g = Guid.NewGuid(); [VB.NET] Dim g as Guid = Guid.NewGuid() http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemguidclasstopic.asp Cheers Arne Janning
Jeff Lynch said: How do I create a new GUID programatically like the "Create Guid" tool does in VS.NET? Click to expand... Hi Jeff, use NewGuid() of the System.Guid-Structure. [C#] Guid g = Guid.NewGuid(); [VB.NET] Dim g as Guid = Guid.NewGuid() http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemguidclasstopic.asp Cheers Arne Janning
J Jeff Lynch Aug 30, 2004 #3 Thanks! -- Jeff Lynch "A BizTalk Enthusiast" http://dotnetjunkies.com/WebLog/jlynch/ Arne Janning said: Jeff Lynch said: How do I create a new GUID programatically like the "Create Guid" tool does in VS.NET? Click to expand... Hi Jeff, use NewGuid() of the System.Guid-Structure. [C#] Guid g = Guid.NewGuid(); [VB.NET] Dim g as Guid = Guid.NewGuid() http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemguidclasstopic.asp Cheers Arne Janning Click to expand...
Thanks! -- Jeff Lynch "A BizTalk Enthusiast" http://dotnetjunkies.com/WebLog/jlynch/ Arne Janning said: Jeff Lynch said: How do I create a new GUID programatically like the "Create Guid" tool does in VS.NET? Click to expand... Hi Jeff, use NewGuid() of the System.Guid-Structure. [C#] Guid g = Guid.NewGuid(); [VB.NET] Dim g as Guid = Guid.NewGuid() http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemguidclasstopic.asp Cheers Arne Janning Click to expand...