Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / clr / src / BCL / System / Reflection / ParameterModifier.cs / 1 / ParameterModifier.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System.Reflection { using System; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public struct ParameterModifier { #region Private Data Members private bool[] _byRef; #endregion #region Constructor public ParameterModifier(int parameterCount) { if (parameterCount <= 0) throw new ArgumentException(Environment.GetResourceString("Arg_ParmArraySize")); _byRef = new bool[parameterCount]; } #endregion #region Internal Members internal bool[] IsByRefArray { get { return _byRef; } } #endregion #region Public Members public bool this[int index] { get { return _byRef[index]; } set { _byRef[index] = value; } } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System.Reflection { using System; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public struct ParameterModifier { #region Private Data Members private bool[] _byRef; #endregion #region Constructor public ParameterModifier(int parameterCount) { if (parameterCount <= 0) throw new ArgumentException(Environment.GetResourceString("Arg_ParmArraySize")); _byRef = new bool[parameterCount]; } #endregion #region Internal Members internal bool[] IsByRefArray { get { return _byRef; } } #endregion #region Public Members public bool this[int index] { get { return _byRef[index]; } set { _byRef[index] = value; } } #endregion } } // 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
- CodeGroup.cs
- CalendarDay.cs
- LeafCellTreeNode.cs
- Material.cs
- UnsafeNativeMethods.cs
- BindingMemberInfo.cs
- BitmapEffectInput.cs
- TextSelectionProcessor.cs
- AnonymousIdentificationSection.cs
- ConfigViewGenerator.cs
- StrokeNodeEnumerator.cs
- DirectoryObjectSecurity.cs
- ValidationVisibilityAttribute.cs
- MailDefinitionBodyFileNameEditor.cs
- WebResourceUtil.cs
- RegexStringValidator.cs
- FontWeightConverter.cs
- LocationFactory.cs
- DateBoldEvent.cs
- NativeMethods.cs
- TextBoxAutoCompleteSourceConverter.cs
- RegexRunnerFactory.cs
- WindowsNonControl.cs
- WeakReference.cs
- ZoomPercentageConverter.cs
- SafeRightsManagementQueryHandle.cs
- ByteStreamMessageEncodingElement.cs
- ObjectResult.cs
- BufferedGraphicsContext.cs
- RuntimeConfig.cs
- ManagedFilter.cs
- CryptoApi.cs
- EdmRelationshipRoleAttribute.cs
- ExpressionBinding.cs
- InfoCardProofToken.cs
- GacUtil.cs
- CursorInteropHelper.cs
- RadioButtonAutomationPeer.cs
- ForeignKeyConstraint.cs
- StringFreezingAttribute.cs
- BitmapSizeOptions.cs
- CommentEmitter.cs
- PenContext.cs
- Vector.cs
- SecurityContextSecurityToken.cs
- OptimizedTemplateContent.cs
- EventRecord.cs
- RenderData.cs
- WebServiceData.cs
- ToolStripComboBox.cs
- LayoutEvent.cs
- BindableAttribute.cs
- PolyLineSegmentFigureLogic.cs
- HierarchicalDataSourceDesigner.cs
- While.cs
- XmlNamedNodeMap.cs
- HashAlgorithm.cs
- IPipelineRuntime.cs
- GenericTextProperties.cs
- GenericRootAutomationPeer.cs
- IdentifierService.cs
- BitmapEffectDrawingContent.cs
- ColorConvertedBitmap.cs
- UDPClient.cs
- FixedSOMTextRun.cs
- XmlSchemaComplexContent.cs
- CodeDomConfigurationHandler.cs
- Helpers.cs
- BinaryReader.cs
- EventLogInformation.cs
- Page.cs
- LoadedOrUnloadedOperation.cs
- FileDialogCustomPlace.cs
- cache.cs
- ReadWriteObjectLock.cs
- ListItem.cs
- TreeViewCancelEvent.cs
- SessionEndedEventArgs.cs
- PageThemeBuildProvider.cs
- IPEndPointCollection.cs
- SchemaConstraints.cs
- FixedTextBuilder.cs
- CollectionViewGroupInternal.cs
- SpanIndex.cs
- MustUnderstandBehavior.cs
- FilterElement.cs
- PageBuildProvider.cs
- TableLayoutCellPaintEventArgs.cs
- XmlAggregates.cs
- CircleHotSpot.cs
- WebPartConnectVerb.cs
- ToolStripCollectionEditor.cs
- TransportConfigurationTypeElementCollection.cs
- EdmFunction.cs
- SerializationSectionGroup.cs
- RelatedCurrencyManager.cs
- DataServiceOperationContext.cs
- LifetimeServices.cs
- WebPartsPersonalization.cs
- SspiHelper.cs