如何从 IKeyValuePair获取值

发布于 2024-12-18 05:33:12 字数 729 浏览 1 评论 0原文

我试图从

IKeyValuePair<Platform::Guid,Platform:: Object>

Say 获取值,例如我有一个名为 SomeApi() 的 Api,它返回 IKeyValuePair

C++ 代码:

auto res =  SomeApi();    
String ^str = res->key; // I am able to get Guid Here    

现在如何从中获取值

< code>res->value 返回对象,但如何知道对象的类型并从中获取值。

如果我这样做,

String^ value =  res->value.ToString(); // this returns something else not value

请通过代码解释我如何从 IKeyValuePair 获取值。

I am trying to get the value from

IKeyValuePair<Platform::Guid,Platform:: Object>

Say for example I have Api Called SomeApi() which returns IKeyValuePair<Platform::Guid,Platform:: Object>

C++ Code:

auto res =  SomeApi();    
String ^str = res->key; // I am able to get Guid Here    

Now How to get Value from it

res->value returns object but how to know type of object and get the value from it.

if I do

String^ value =  res->value.ToString(); // this returns something else not value

Please explain me through code how can i get value from IKeyValuePair.

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

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

发布评论

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

评论(2

丢了幸福的猪 2024-12-25 05:33:12

您应该从 Platform::Object^ 转换为基础类型,例如:

String^ value = safe_cast<String^>(res->value);

You should cast from Platform::Object^ to the underlying type, eg:

String^ value = safe_cast<String^>(res->value);
心安伴我暖 2024-12-25 05:33:12
String^ value =  res->value->ToString();
String^ value =  res->value->ToString();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文