public static DataTable GetTable([NotNull] this DataColumnCollection thisValue)
        {
            FieldInfo info = thisValue.AsType().FindField("table", Constants.BF_NON_PUBLIC_INSTANCE, typeof(DataTable));

            return((DataTable)info?.GetValue(thisValue));
        }