Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
なぜこれが機能しないのですか?
MsgBox("F6D8C47B-46E6-4E93-A393-00085ACA2242").ToString.Replace("-", "")
どうやらすでに文字列である Guid ではなく、MsgBox で ToString を呼び出しています。試す
MsgBox("F6D8C47B-46E6-4E93-A393-00085ACA2242".Replace("-",""))
MsgBox(Guid.NewGuid().ToString("N").ToUpper());