Unplanned
Last Updated: 24 Mar 2022 09:29 by Gabriele
Gabriele
Created on: 24 Mar 2022 09:29
Category: Grid
Type: Feature Request
3
Add support for Enum values different than int

Allow the Grid to support Enums which are mapped to use datatypes different from int. Currently, if I try to use the following Enum, an InvlidCastException is generated:

public enum ShortEnum : short
{
    Value1,
    Value2,
    Value3
}

0 comments