嗨,我在 stringbuilder 中有一些 guid,我想将这些值存储在 guid 数组中。
有人可以给我一个想法来转换它。我正在使用 vb.net
提前致谢
假设:您的指导实际上只是字符串。这可能会有所帮助:
Dim SB as new Stringbuilder = "GUID"
Dim GuidList as New List(Of Guid)
Dim myGUID as Guid
If GUID.tryparse(SB.tostring, myGuid)=true then
Guidlist.add(myguid)
else
'Handle the error here
end if
将其包装在您的 Guid 上的循环中,我不知道您是如何存储它们的。备注:您可能需要使用 parsexact,请参阅文档: http: //msdn.microsoft.com/en-us/library/system.guid.aspx 我已经写出来了,所以代码可能无法编译.. .