CompilationRelaxations.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Runtime / CompilerServices / CompilationRelaxations.cs / 1305376 / CompilationRelaxations.cs

                            // ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// 
 
namespace System.Runtime.CompilerServices
{ 

    using System;

    /// IMPORTANT: Keep this in [....] with corhdr.h 
[Serializable]
[Flags] 
[System.Runtime.InteropServices.ComVisible(true)] 
    public enum CompilationRelaxations : int
    { 
        NoStringInterning       = 0x0008, // Start in 0x0008, we had other non public flags in this enum before,
                                          // so we'll start here just in case somebody used them. This flag is only
                                          // valid when set for Assemblies.
    }; 

[Serializable] 
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Module | AttributeTargets.Class | AttributeTargets.Method)] 
[System.Runtime.InteropServices.ComVisible(true)]
    public class CompilationRelaxationsAttribute : Attribute 
    {
        private int m_relaxations;      // The relaxations.

        public CompilationRelaxationsAttribute ( 
            int relaxations)
        { 
            m_relaxations = relaxations; 
        }
 
        public CompilationRelaxationsAttribute (
            CompilationRelaxations relaxations)
        {
            m_relaxations = (int) relaxations; 
        }
 
        public int CompilationRelaxations 
        {
            get 
            {
                return m_relaxations;
            }
        } 
    }
 
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// 
 
namespace System.Runtime.CompilerServices
{ 

    using System;

    /// IMPORTANT: Keep this in [....] with corhdr.h 
[Serializable]
[Flags] 
[System.Runtime.InteropServices.ComVisible(true)] 
    public enum CompilationRelaxations : int
    { 
        NoStringInterning       = 0x0008, // Start in 0x0008, we had other non public flags in this enum before,
                                          // so we'll start here just in case somebody used them. This flag is only
                                          // valid when set for Assemblies.
    }; 

[Serializable] 
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Module | AttributeTargets.Class | AttributeTargets.Method)] 
[System.Runtime.InteropServices.ComVisible(true)]
    public class CompilationRelaxationsAttribute : Attribute 
    {
        private int m_relaxations;      // The relaxations.

        public CompilationRelaxationsAttribute ( 
            int relaxations)
        { 
            m_relaxations = relaxations; 
        }
 
        public CompilationRelaxationsAttribute (
            CompilationRelaxations relaxations)
        {
            m_relaxations = (int) relaxations; 
        }
 
        public int CompilationRelaxations 
        {
            get 
            {
                return m_relaxations;
            }
        } 
    }
 
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK