} //ctor internal ReadOnlyRecord(KeyValRecord realRecord) : this(realRecord, false) { } //creates instance that ignores errors
internal ReadOnlyRecord(KeyValRecord realRecord, bool throwOnMisuse) { _realRecord = realRecord; _throwOnMisuse = throwOnMisuse; } //ctor