public class MyClass { public string MyProperty{ get; set; }
Now, I would like to Map each property to have an [X, Y] integer.
MyProperty = "Its string value.";
MyProperty.X = 4;
MyProperty.Y = 10;
There are a couple of ways I am thinking about doing this, but not sure what would be the best. Basically mapping a POCO to an Excel spreadsheet.
Should I or can I decorate the properties? Should I use a Dictionary?