isDataSection property

bool isDataSection

Implementation

bool get isDataSection =>
    (_characteristics & IMAGE_SCN_CNT_INITIALIZED_DATA) == 1 ||
    (_characteristics & IMAGE_SCN_CNT_UNINITIALIZED_DATA) == 1;