gpt4 book ai didi

c# - 如何将字符串转换为 Guid?

转载 作者:行者123 更新时间:2023-12-04 14:32:16 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Test if string is a guid without throwing exceptions?

(19 个回答)


3年前关闭。




我有像 "e2ddfa02610e48e983824b23ac955632" 这样的字符串类型值.我需要添加 - 在这段代码中意味着在 Guid 中转换。

EntityKey = "e2ddfa02610e48e983824b23ac955632";
Id = (Guid)paymentRecord.EntityKey;

最佳答案

你可以这样做:

Guid guid;
if (Guid.TryParse("e2ddfa02610e48e983824b23ac955632", out guid))
{
// succeed...
}
else
{
// failed...
}

编辑:就像@Silvermind 说的,如果你知道输入的格式,你可以使用 Guid.TryParseExact"N"格式在你的情况下。

关于c# - 如何将字符串转换为 Guid?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33953985/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com