Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / clr / src / BCL / System / Runtime / CompilerServices / CompilationRelaxations.cs / 1 / 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

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ApplicationException.cs
- LogLogRecordEnumerator.cs
- DifferencingCollection.cs
- ListView.cs
- EmptyStringExpandableObjectConverter.cs
- CngUIPolicy.cs
- MetadataCache.cs
- XmlReaderDelegator.cs
- ToolStripDropTargetManager.cs
- SchemaInfo.cs
- ArgumentException.cs
- KeyValuePair.cs
- KeyValueSerializer.cs
- ReferenceConverter.cs
- WaitHandle.cs
- XmlByteStreamWriter.cs
- SqlInfoMessageEvent.cs
- AccessibilityHelperForVista.cs
- Vertex.cs
- Interop.cs
- ZipFileInfo.cs
- Stroke.cs
- TypeUtil.cs
- AutomationElementCollection.cs
- TableRow.cs
- Utils.cs
- PowerModeChangedEventArgs.cs
- HitTestWithGeometryDrawingContextWalker.cs
- FontConverter.cs
- WebPartZone.cs
- IBuiltInEvidence.cs
- AccessControlList.cs
- TextTrailingCharacterEllipsis.cs
- WinInet.cs
- DurationConverter.cs
- SQLInt32Storage.cs
- NotConverter.cs
- RegisteredDisposeScript.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- FontNamesConverter.cs
- ItemCollection.cs
- ParentUndoUnit.cs
- SmiMetaDataProperty.cs
- Serializer.cs
- InputScope.cs
- Profiler.cs
- SyncOperationState.cs
- OutputCacheSettings.cs
- RtfToXamlReader.cs
- DesignerEditorPartChrome.cs
- ErrorFormatter.cs
- MediaElementAutomationPeer.cs
- TaiwanLunisolarCalendar.cs
- PrivilegeNotHeldException.cs
- Thumb.cs
- MultiByteCodec.cs
- _SafeNetHandles.cs
- dtdvalidator.cs
- ChangeProcessor.cs
- ZipIOBlockManager.cs
- SqlProfileProvider.cs
- SafeNativeMethods.cs
- FormatSettings.cs
- WebBrowser.cs
- BaseAsyncResult.cs
- SEHException.cs
- Win32Native.cs
- Assembly.cs
- UnmanagedMemoryStream.cs
- TextEffect.cs
- ImageSource.cs
- RemotingConfigParser.cs
- DbConnectionHelper.cs
- EdmTypeAttribute.cs
- RuntimeHelpers.cs
- XmlSchemaSimpleTypeUnion.cs
- DataGridRow.cs
- WhitespaceSignificantCollectionAttribute.cs
- Stackframe.cs
- XmlDataSourceView.cs
- ModelFactory.cs
- BitmapEffectInput.cs
- EpmContentSerializerBase.cs
- ExpressionNormalizer.cs
- linebase.cs
- BitConverter.cs
- MethodExpr.cs
- ACE.cs
- CmsInterop.cs
- ISCIIEncoding.cs
- UnionExpr.cs
- Statements.cs
- ParameterCollection.cs
- CodeGeneratorOptions.cs
- XPathDocumentNavigator.cs
- TemplatedWizardStep.cs
- OdbcCommand.cs
- COM2Properties.cs
- IncrementalHitTester.cs
- WorkflowPageSetupDialog.cs