Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / clr / src / BCL / System / Reflection / Emit / Label.cs / 1 / Label.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: Label ** ** ** ** Purpose: Represents a Label to the ILGenerator class. ** ** ===========================================================*/ namespace System.Reflection.Emit { using System; using System.Reflection; using System.Security.Permissions; using System.Runtime.InteropServices; // The Label class is an opaque representation of a label used by the // ILGenerator class. The token is used to mark where labels occur in the IL // stream and then the necessary offsets are put back in the code when the ILGenerator // is passed to the MethodWriter. // Labels are created by using ILGenerator.CreateLabel and their position is set // by using ILGenerator.MarkLabel. [Serializable()] [ComVisible(true)] public struct Label { internal int m_label; //public Label() { // m_label=0; //} internal Label (int label) { m_label=label; } internal int GetLabelValue() { return m_label; } public override int GetHashCode() { return m_label; } public override bool Equals(Object obj) { if (obj is Label) return Equals((Label)obj); else return false; } public bool Equals(Label obj) { return obj.m_label == m_label; } public static bool operator ==(Label a, Label b) { return a.Equals(b); } public static bool operator !=(Label a, Label b) { return !(a == b); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: Label ** ** ** ** Purpose: Represents a Label to the ILGenerator class. ** ** ===========================================================*/ namespace System.Reflection.Emit { using System; using System.Reflection; using System.Security.Permissions; using System.Runtime.InteropServices; // The Label class is an opaque representation of a label used by the // ILGenerator class. The token is used to mark where labels occur in the IL // stream and then the necessary offsets are put back in the code when the ILGenerator // is passed to the MethodWriter. // Labels are created by using ILGenerator.CreateLabel and their position is set // by using ILGenerator.MarkLabel. [Serializable()] [ComVisible(true)] public struct Label { internal int m_label; //public Label() { // m_label=0; //} internal Label (int label) { m_label=label; } internal int GetLabelValue() { return m_label; } public override int GetHashCode() { return m_label; } public override bool Equals(Object obj) { if (obj is Label) return Equals((Label)obj); else return false; } public bool Equals(Label obj) { return obj.m_label == m_label; } public static bool operator ==(Label a, Label b) { return a.Equals(b); } public static bool operator !=(Label a, Label b) { return !(a == b); } } } // 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
- Signature.cs
- ButtonPopupAdapter.cs
- TextProperties.cs
- EncoderFallback.cs
- SubqueryTrackingVisitor.cs
- DomNameTable.cs
- Int16.cs
- ObjectItemAttributeAssemblyLoader.cs
- _Win32.cs
- XmlSignificantWhitespace.cs
- XmlLanguageConverter.cs
- DataSourceCache.cs
- CodeFieldReferenceExpression.cs
- SplineKeyFrames.cs
- MultipleViewPattern.cs
- XamlFxTrace.cs
- WebPartsSection.cs
- ControlFilterExpression.cs
- WebHeaderCollection.cs
- RegexWorker.cs
- MessageLogger.cs
- LocalFileSettingsProvider.cs
- ObjectViewQueryResultData.cs
- SafeCertificateContext.cs
- ToolStripHighContrastRenderer.cs
- SubtreeProcessor.cs
- ADMembershipUser.cs
- ValidationService.cs
- TagPrefixInfo.cs
- MulticastNotSupportedException.cs
- DbDeleteCommandTree.cs
- DocumentViewerBaseAutomationPeer.cs
- Hex.cs
- ImagingCache.cs
- SqlDataSourceConnectionPanel.cs
- StylusOverProperty.cs
- MasterPageParser.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- FunctionQuery.cs
- PerfCounterSection.cs
- ToolbarAUtomationPeer.cs
- DataServiceHost.cs
- ZipFileInfo.cs
- FullTextLine.cs
- ByteArrayHelperWithString.cs
- URIFormatException.cs
- MimeFormReflector.cs
- ImpersonateTokenRef.cs
- EnvironmentPermission.cs
- PhonemeConverter.cs
- DragDrop.cs
- XmlSequenceWriter.cs
- PreloadHost.cs
- PublisherMembershipCondition.cs
- WebBrowsableAttribute.cs
- XmlJsonWriter.cs
- ScriptManagerProxy.cs
- CreatingCookieEventArgs.cs
- SafeTimerHandle.cs
- GroupBox.cs
- TimeZone.cs
- Item.cs
- RequestQueue.cs
- OutOfMemoryException.cs
- EmptyElement.cs
- Convert.cs
- ListViewPagedDataSource.cs
- PartialTrustHelpers.cs
- Module.cs
- AdornedElementPlaceholder.cs
- MsmqAppDomainProtocolHandler.cs
- SymbolEqualComparer.cs
- NavigationPropertySingletonExpression.cs
- WebPartTracker.cs
- InvalidPipelineStoreException.cs
- EdmSchemaError.cs
- ProtectedProviderSettings.cs
- IResourceProvider.cs
- QfeChecker.cs
- ColumnMapCopier.cs
- FrameAutomationPeer.cs
- EventSourceCreationData.cs
- GridViewPageEventArgs.cs
- AdPostCacheSubstitution.cs
- StylusDownEventArgs.cs
- LateBoundBitmapDecoder.cs
- ObjectDataSourceSelectingEventArgs.cs
- XPathChildIterator.cs
- GenericWebPart.cs
- FixedSOMPageConstructor.cs
- MetadataExchangeBindings.cs
- DecoderReplacementFallback.cs
- GroupAggregateExpr.cs
- URI.cs
- WebScriptServiceHostFactory.cs
- DeferredSelectedIndexReference.cs
- FrugalMap.cs
- FileRecordSequenceCompletedAsyncResult.cs
- WSIdentityFaultException.cs
- SoapAttributes.cs