Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@

namespace System.Diagnostics.CodeAnalysis
{
#if !NET8_0_OR_GREATER
// These types exist since .NET 5, so they must only be defined for the frameworks that do not have them.
// A build for .NET 6 or .NET 7 fails with CS0433 (type exists in two assemblies) if the condition is
// '!NET8_0_OR_GREATER'.
#if NET462 || NETSTANDARD2_0
/// <summary>
/// Indicates that certain members on a specified <see cref="Type"/> are accessed dynamically,
/// for example through <see cref="Reflection"/>.
Expand Down