Dong Lam Trien

Dong Lam Trien

  • 779
  • 968
  • 134.7k

Declare the type of cell of DevExpress GridView ?

Feb 12 2015 2:21 AM
I use Dictionary to mark of Cell type (GridView of DevExpress), for example, declare the type of row, I declared thus:

[code]
  Dictionary<DataRow, Color> colors = new Dictionary<DataRow, Color>();
[/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<DataRow, Color>();
[/code]