summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Runtime/CompilerServices/IsConst.cs
blob: 210e5997a7d323f66b3284bc177a6de594edebee (plain)
1
2
3
4
5
6
7
8
9
10
11
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace System.Runtime.CompilerServices
{
    // Indicates that the modified type is const (i.e. has a const modifier)
    public static class IsConst 
    {
    }
}