嗨我在stringbuilder中有一些guid,我想将这些值存储在guid数组中。
有人可以给我转换它的想法。我正在使用vb.net
提前致谢
答案 0 :(得分:0)
假设:你的指针真的很简单。 这可能会有所帮助:
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
将它包裹在Guids的循环中,我不知道你是如何存储它们的。 备注:您可能需要使用parsexact,请参阅文档:http://msdn.microsoft.com/en-us/library/system.guid.aspx 我已经写完了,所以代码可能无法编译......