gpt4 book ai didi

c# - 在派生构造函数中的某个代码块之后调用派生类中的基类构造函数

转载 作者:太空狗 更新时间:2023-10-29 21:44:20 28 4
gpt4 key购买 nike

<分区>

public class bar
{
public bar(list<int> id, String x, int size, byte[] bytes)
{
...
}
}

public class Foo: Bar
{
public Foo(list<int> id, String x, someEnumType y):
base(id, x, sizeof(someEnumType), y)
{
//some functionality
}
}

正如您在上面的代码中看到的,在调用基类构造函数之前,我需要将 someEnumType 转换为字节数组类型。有办法吗?像这样的东西:

public class Foo: Bar
{
public Foo(list<int> id, String x, someEnumType y)
{
//someEnumType to byte array
base(...)

}
}

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