I use Dictionary to mark of Cell type (GridView of DevExpress), for example, declare the type of row, I declared thus:
[code]
Dictionary colors = new Dictionary();
[/code]
code above the type of row, declaration row is: DataRow, I want to replace the type DataRow is Cell type of the DevExpress GridView What is keyword in C# ?
[code]
Dictionary??, Color> colors = new Dictionary();
[/code]
Replies
Know the answer? Post it — somebody with the same question will find it here.