对象-->结构?

发布于 2024-10-31 15:35:27 字数 233 浏览 0 评论 0原文

如何获取一个对象并将其转换为结构体和反签证?

public void myMethod1(object myInputObject, out string myOutputString) 
{
   myInputObject = null;
   myOutputString = "";

  //Convert object into a struct, then do something
}

How do I take an Object and convert it into a struct and vice visa?

public void myMethod1(object myInputObject, out string myOutputString) 
{
   myInputObject = null;
   myOutputString = "";

  //Convert object into a struct, then do something
}

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

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

发布评论

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

评论(2

我三岁 2024-11-07 15:35:27

在方法中定义一个结构体并设置字段值。

Define a struct and set fields values inside your method.

天赋异禀 2024-11-07 15:35:27

我想你想要这样的东西:(伪代码)

class myclass
{
public int a;
public float b;

}

struct somestruct
{

somestruct(int a, float b)
{
   this.a = a;
   this.b = b;
}

int a;
float b;

}


myclass mc = new myclass();

mc.a = 125;
mc.b = 12.5;

somestruct s = new somestruct(mc.a, mc.b); //all fields of mc are now in struct somestruct

I suppose you want something like this: (pseudo code)

class myclass
{
public int a;
public float b;

}

struct somestruct
{

somestruct(int a, float b)
{
   this.a = a;
   this.b = b;
}

int a;
float b;

}


myclass mc = new myclass();

mc.a = 125;
mc.b = 12.5;

somestruct s = new somestruct(mc.a, mc.b); //all fields of mc are now in struct somestruct
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文