Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ReadonlyMessageFilter.cs
- Encoder.cs
- ImportedNamespaceContextItem.cs
- RichTextBoxConstants.cs
- Zone.cs
- SimpleTextLine.cs
- ComponentResourceKey.cs
- SerializerDescriptor.cs
- StructuredType.cs
- PieceNameHelper.cs
- PointAnimation.cs
- Qualifier.cs
- SrgsRule.cs
- shaper.cs
- CursorInteropHelper.cs
- IDataContractSurrogate.cs
- SerializerProvider.cs
- Comparer.cs
- PageAsyncTask.cs
- assemblycache.cs
- XmlAnyElementAttributes.cs
- Comparer.cs
- DbProviderServices.cs
- MappingMetadataHelper.cs
- OneToOneMappingSerializer.cs
- Sentence.cs
- util.cs
- ActivationProxy.cs
- TraceData.cs
- MobileControlsSectionHelper.cs
- HtmlTableRowCollection.cs
- StringExpressionSet.cs
- DecoderReplacementFallback.cs
- Int64AnimationUsingKeyFrames.cs
- UIElementCollection.cs
- _WinHttpWebProxyDataBuilder.cs
- RuntimeConfig.cs
- CustomErrorsSectionWrapper.cs
- SystemIPInterfaceProperties.cs
- DPCustomTypeDescriptor.cs
- Vector3DCollection.cs
- GridViewColumnCollection.cs
- BaseResourcesBuildProvider.cs
- TouchEventArgs.cs
- ConfigurationSectionCollection.cs
- BinaryUtilClasses.cs
- SelectionRange.cs
- HttpCacheParams.cs
- AspNetSynchronizationContext.cs
- EncoderReplacementFallback.cs
- EnglishPluralizationService.cs
- HttpContext.cs
- COM2TypeInfoProcessor.cs
- Timer.cs
- PackageDigitalSignatureManager.cs
- StreamGeometry.cs
- MembershipUser.cs
- PagerSettings.cs
- SiteMapNodeCollection.cs
- NumericUpDown.cs
- AuthenticationModuleElementCollection.cs
- DataGridSortCommandEventArgs.cs
- KnownIds.cs
- XmlQueryTypeFactory.cs
- TreeNodeStyleCollectionEditor.cs
- SelectionListDesigner.cs
- Misc.cs
- SchemaTypeEmitter.cs
- DataFormat.cs
- IsolatedStorageFile.cs
- NamedPermissionSet.cs
- PageCatalogPart.cs
- DataGridViewRowPostPaintEventArgs.cs
- JsonUriDataContract.cs
- XmlDataLoader.cs
- MultiViewDesigner.cs
- MouseGesture.cs
- ExpressionBindingCollection.cs
- PeerNameRecord.cs
- MenuAdapter.cs
- StreamProxy.cs
- Button.cs
- FileSystemEventArgs.cs
- WindowsFormsSynchronizationContext.cs
- DiagnosticSection.cs
- TypeConverterHelper.cs
- PermissionToken.cs
- NativeActivityAbortContext.cs
- SpecialFolderEnumConverter.cs
- DbDataRecord.cs
- TypeExtensionConverter.cs
- TextElement.cs
- TabletDeviceInfo.cs
- RepeaterCommandEventArgs.cs
- XmlAttribute.cs
- OSEnvironmentHelper.cs
- OneOfConst.cs
- Pair.cs
- SrgsElementFactoryCompiler.cs
- MobileUserControlDesigner.cs