private static string IncludeObjectId(DkmClrValue value, string valueStr, GetValueFlags flags)
 {
     Debug.Assert(valueStr != null);
     return (flags & GetValueFlags.IncludeObjectId) == 0 ?
         valueStr :
         value.IncludeObjectId(valueStr);
 }