Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- ScrollItemProviderWrapper.cs
- SqlBooleanizer.cs
- BaseCodeDomTreeGenerator.cs
- CardSpaceException.cs
- DPTypeDescriptorContext.cs
- SharedDp.cs
- RawStylusSystemGestureInputReport.cs
- RemoveStoryboard.cs
- StorageBasedPackageProperties.cs
- XmlSchemaAll.cs
- CrossAppDomainChannel.cs
- AnonymousIdentificationSection.cs
- ResourceCategoryAttribute.cs
- GeneratedContractType.cs
- PtsHost.cs
- OleDbParameterCollection.cs
- StrongNameUtility.cs
- IISMapPath.cs
- SmiGettersStream.cs
- ClonableStack.cs
- ToolTip.cs
- XPathConvert.cs
- HttpHostedTransportConfiguration.cs
- GridItemPattern.cs
- ContextProperty.cs
- DotExpr.cs
- Mutex.cs
- Visitors.cs
- XmlDocumentFragment.cs
- FileDetails.cs
- _ContextAwareResult.cs
- GreaterThanOrEqual.cs
- BindingSource.cs
- CroppedBitmap.cs
- RenderDataDrawingContext.cs
- SystemColors.cs
- DataRowChangeEvent.cs
- StringResourceManager.cs
- TextOnlyOutput.cs
- HostingEnvironmentSection.cs
- DataGridViewRow.cs
- DataGridViewComboBoxColumn.cs
- WebPartConnectionsConnectVerb.cs
- Matrix3DConverter.cs
- Button.cs
- SqlAggregateChecker.cs
- HMACSHA1.cs
- EnvelopedPkcs7.cs
- DataGridViewHitTestInfo.cs
- X509CertificateClaimSet.cs
- DataGridViewRowsAddedEventArgs.cs
- PrimitiveSchema.cs
- GeneralTransform3DTo2D.cs
- IgnoreFlushAndCloseStream.cs
- SoapExtensionStream.cs
- handlecollector.cs
- ObjectNavigationPropertyMapping.cs
- Composition.cs
- PlaceHolder.cs
- Path.cs
- HelpKeywordAttribute.cs
- FilterEventArgs.cs
- UnsafeNativeMethods.cs
- PathGeometry.cs
- SafeCryptoHandles.cs
- SqlBooleanMismatchVisitor.cs
- TypedAsyncResult.cs
- XmlSchemaExporter.cs
- FontDialog.cs
- ListViewItem.cs
- TCEAdapterGenerator.cs
- TextEndOfLine.cs
- Helpers.cs
- AttributeTableBuilder.cs
- XmlC14NWriter.cs
- SecurityManager.cs
- CodeCommentStatement.cs
- wmiprovider.cs
- SqlMethodAttribute.cs
- InvalidProgramException.cs
- HttpCookieCollection.cs
- EmptyCollection.cs
- ModelTreeEnumerator.cs
- HttpRuntime.cs
- MenuItemAutomationPeer.cs
- CalendarData.cs
- ManagedIStream.cs
- ControlCachePolicy.cs
- xmlglyphRunInfo.cs
- InheritanceRules.cs
- ValidationError.cs
- Point4D.cs
- ErrorStyle.cs
- StateMachineSubscription.cs
- PageVisual.cs
- InputEventArgs.cs
- MimeXmlImporter.cs
- SelectionEditingBehavior.cs
- GridViewColumnHeaderAutomationPeer.cs
- MenuItemStyleCollection.cs