英文:
C# Custom field, data type
问题
我想在dot.net core中创建一个自定义字段,该字段将具有布尔值以及整数或字符串值,类似于以下内容:
public MyCustomField field;
field.BoolValue = true或false;
field.NumberValue = 101;
这是否可行?
英文:
I want to create a custom field in dot.net core which will have a bool as well as an integer or string value, something like the following:
Public MyCustomField field;
field.BoolValue = true or false;
field.NumberValue = 101;
Is this possible?
答案1
得分: 2
是的,它是。
void Main()
{
field.BoolValue = true;
field.NumberValue = 101;
}
public MyCustomField field;
public struct MyCustomField // or `class`
{
public bool BoolValue;
public int NumberValue;
}
英文:
Yes, it is.
void Main()
{
field.BoolValue = true;
field.NumberValue = 101;
}
public MyCustomField field;
public struct MyCustomField // or `class`
{
public bool BoolValue;
public int NumberValue;
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论