public class MyClass { public string MyProperty{ get; set; }
现在,我想将每个属性映射为具有 [X, Y] 整数。
MyProperty = "Its string value.";
MyProperty.X = 4;
MyProperty.Y = 10;
我正在考虑这样做的几种方法,但不确定哪种方法最好。基本上将 POCO 映射到 Excel 电子表格。
我应该或可以装饰这些房产吗?我应该使用字典吗?
正如@DavidHoerster 提到的,您需要一个更具描述性的类模型:
public class SpreadSheetCell
{
public int X {get; set;}
public int Y {get; set;}
public string Contents {get; set;}
}
...
SpreadSheetCell[,] spreadSheet = new SpreadSheetCell[100,100];
spreadSheet[1, 2] = new SpreadSheetCell
{
X = 1,
Y = 2,
Contents = "Something goes here..."
};