使用 guid 进行测试...如何将变量设置为 Guid?
我正在测试一些数据库层功能。其中,我模拟用户传入 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建新的 GUID
从字符串创建
Guid
实例将
Guid
对象转换为字符串To create a new GUID
To create a
Guid
instance from a stringTo convert a
Guid
object to a string