Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HtmlInputPassword.cs
- FirewallWrapper.cs
- ActivityExecutorOperation.cs
- COM2PropertyPageUITypeConverter.cs
- Profiler.cs
- RuleProcessor.cs
- ConcurrentQueue.cs
- XmlSchemaIdentityConstraint.cs
- SqlEnums.cs
- ObjRef.cs
- IsolatedStoragePermission.cs
- Utils.cs
- IisTraceListener.cs
- EntityKeyElement.cs
- InProcStateClientManager.cs
- Delegate.cs
- ListenerElementsCollection.cs
- TextWriter.cs
- XmlSchemaInclude.cs
- ImportContext.cs
- ToolboxItemFilterAttribute.cs
- FileChangeNotifier.cs
- TextTreeText.cs
- OperandQuery.cs
- AutoGeneratedFieldProperties.cs
- ContentPosition.cs
- DataFormats.cs
- XPathNodeIterator.cs
- ResetableIterator.cs
- InternalDispatchObject.cs
- MachineKeySection.cs
- XamlPoint3DCollectionSerializer.cs
- DataReceivedEventArgs.cs
- OptimizedTemplateContent.cs
- PackagingUtilities.cs
- IIS7WorkerRequest.cs
- UnsafeMethods.cs
- MimeMultiPart.cs
- EntityDescriptor.cs
- TextBoxBase.cs
- ObjectQueryExecutionPlan.cs
- EditCommandColumn.cs
- SiteOfOriginPart.cs
- XmlDocumentFieldSchema.cs
- BamlBinaryReader.cs
- DbConnectionStringBuilder.cs
- DrawingAttributes.cs
- RepeaterItemCollection.cs
- DocumentViewerBase.cs
- AdPostCacheSubstitution.cs
- TaiwanLunisolarCalendar.cs
- NodeLabelEditEvent.cs
- ContainerParagraph.cs
- SafeFindHandle.cs
- ProfileManager.cs
- XmlSchemaComplexType.cs
- FixedSOMContainer.cs
- ValueQuery.cs
- ModuleConfigurationInfo.cs
- TableLayoutStyleCollection.cs
- StreamProxy.cs
- RangeBaseAutomationPeer.cs
- VideoDrawing.cs
- EncodingFallbackAwareXmlTextWriter.cs
- DefaultProxySection.cs
- LinqDataSourceEditData.cs
- Mappings.cs
- SystemParameters.cs
- _ChunkParse.cs
- UriTemplate.cs
- DataGridViewLinkColumn.cs
- ApplicationHost.cs
- DataServiceQueryProvider.cs
- listviewsubitemcollectioneditor.cs
- CursorConverter.cs
- PersianCalendar.cs
- ColumnResizeUndoUnit.cs
- MemberAssignment.cs
- Stack.cs
- ContainerControlDesigner.cs
- Msec.cs
- AppLevelCompilationSectionCache.cs
- RegisteredScript.cs
- CompiledXpathExpr.cs
- CounterSampleCalculator.cs
- ComponentChangingEvent.cs
- ZipFileInfoCollection.cs
- elementinformation.cs
- DoubleLink.cs
- TypedElement.cs
- HostExecutionContextManager.cs
- TemplateApplicationHelper.cs
- FormatterConverter.cs
- MDIClient.cs
- StringInfo.cs
- URI.cs
- Types.cs
- SystemIPGlobalProperties.cs
- NativeMethods.cs
- MemoryPressure.cs