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
- TabletCollection.cs
- FloatAverageAggregationOperator.cs
- WriteTimeStream.cs
- DisplayMemberTemplateSelector.cs
- BamlTreeUpdater.cs
- SystemWebExtensionsSectionGroup.cs
- CallbackDebugElement.cs
- WebPartTransformer.cs
- IgnoreSectionHandler.cs
- AttributeAction.cs
- WebPartConnectionsCancelEventArgs.cs
- LinearKeyFrames.cs
- X509SecurityToken.cs
- DefaultSection.cs
- FlowDocumentReader.cs
- TransformGroup.cs
- UriSection.cs
- PropertyGrid.cs
- CrossSiteScriptingValidation.cs
- ReflectionPermission.cs
- ActiveXMessageFormatter.cs
- FixedPageProcessor.cs
- ChannelFactoryBase.cs
- PrimitiveDataContract.cs
- TypeSemantics.cs
- HtmlObjectListAdapter.cs
- ScriptingProfileServiceSection.cs
- FontFamily.cs
- DetailsViewInsertEventArgs.cs
- DeferredTextReference.cs
- tabpagecollectioneditor.cs
- LayoutTableCell.cs
- BitArray.cs
- TextRange.cs
- ProfessionalColorTable.cs
- ToolStripMenuItem.cs
- TriggerCollection.cs
- CharAnimationUsingKeyFrames.cs
- AttachInfo.cs
- HttpModuleCollection.cs
- XmlTextReaderImpl.cs
- UIPermission.cs
- EntityDescriptor.cs
- SoapHeaderException.cs
- FontCacheUtil.cs
- D3DImage.cs
- ChtmlFormAdapter.cs
- InvokeFunc.cs
- CaseStatement.cs
- TraceHandler.cs
- XmlMembersMapping.cs
- _Win32.cs
- Constants.cs
- InvalidCastException.cs
- HitTestFilterBehavior.cs
- TablePattern.cs
- Color.cs
- SymbolType.cs
- PageAsyncTaskManager.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- GC.cs
- KeyNotFoundException.cs
- OleDbSchemaGuid.cs
- RegexGroupCollection.cs
- D3DImage.cs
- StringReader.cs
- FlowLayoutSettings.cs
- ListBoxItemAutomationPeer.cs
- ChildrenQuery.cs
- Lease.cs
- ResourceReferenceKeyNotFoundException.cs
- Ref.cs
- WindowsToolbarItemAsMenuItem.cs
- DateTimeUtil.cs
- Button.cs
- KeyboardDevice.cs
- ConfigurationStrings.cs
- SqlCharStream.cs
- InvalidComObjectException.cs
- RemotingServices.cs
- JsonUriDataContract.cs
- MediaTimeline.cs
- StylusTip.cs
- ExpressionNormalizer.cs
- Empty.cs
- HierarchicalDataBoundControl.cs
- SqlRecordBuffer.cs
- PopupRoot.cs
- TextEditorSelection.cs
- DataMember.cs
- JoinTreeNode.cs
- WindowsTooltip.cs
- PathGeometry.cs
- _StreamFramer.cs
- CompositeActivityTypeDescriptorProvider.cs
- InputProcessorProfilesLoader.cs
- ChildChangedEventArgs.cs
- CompositeCollection.cs
- FixedStringLookup.cs
- FieldTemplateUserControl.cs