使用 guid 进行测试...如何将变量设置为 Guid?

发布于 2024-08-03 13:50:00 字数 223 浏览 2 评论 0原文

我正在测试一些数据库层功能。其中,我模拟用户传入 id(GUID)。我出于测试目的对 guid 进行了硬编码,但似乎无法将其分配给变量,这听起来很荒谬。使用 C# 编写 .NET 2.0 应用程序。我尝试了几种方法,都失败了。将 guid 设置为变量的正确方法是什么?这是代码...

Guid x = "5fb7097c-335c-4d07-b4fd-000004e2d28c";

I am testing some db layer functions. In one, I am simulating the user passing in the id (a GUID). I have hardcoded the guid for testing purposes but can't seem to assign it to a variable, as ridiculous as that sounds. In C# for a .NET 2.0 app. I have tried several ways, all failed. What is the proper way to set a guid to a variable? Here is the code...

Guid x = "5fb7097c-335c-4d07-b4fd-000004e2d28c";

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

幻梦 2024-08-10 13:50:00
Guid x = new Guid("5fb7097c-335c-4d07-b4fd-000004e2d28c");
Guid x = new Guid("5fb7097c-335c-4d07-b4fd-000004e2d28c");
江南烟雨〆相思醉 2024-08-10 13:50:00

创建新的 GUID

Guid value = Guid.NewGuid(); 

从字符串创建 Guid 实例

new Guid("103C8287-30CB-4630-B3F2-978286F72BD7")

Guid 对象转换为字符串

string valueString = value.ToString();

To create a new GUID

Guid value = Guid.NewGuid(); 

To create a Guid instance from a string

new Guid("103C8287-30CB-4630-B3F2-978286F72BD7")

To convert a Guid object to a string

string valueString = value.ToString();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文