Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / PropertyGridInternal / GridEntryCollection.cs / 1 / GridEntryCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms.PropertyGridInternal { using System.Runtime.InteropServices; using System.Diagnostics; using System; using System.Collections; using System.Reflection; using System.Drawing.Design; using System.ComponentModel; using System.ComponentModel.Design; using System.Windows.Forms; using System.Windows.Forms.Design; using System.Drawing; using Microsoft.Win32; internal class GridEntryCollection : GridItemCollection { private GridEntry owner; public GridEntryCollection(GridEntry owner, GridEntry[] entries) : base(entries) { this.owner = owner; } public void AddRange(GridEntry[] value) { if (value == null) { throw new ArgumentNullException("value"); } if (entries != null) { GridEntry[] newArray = new GridEntry[entries.Length + value.Length]; entries.CopyTo(newArray, 0); value.CopyTo(newArray, entries.Length); entries = newArray; } else { entries = (GridEntry[])value.Clone(); } } public void Clear() { entries = new GridEntry[0]; } public void CopyTo(Array dest, int index) { entries.CopyTo(dest, index); } internal GridEntry GetEntry(int index) { return (GridEntry)entries[index]; } internal int GetEntry(GridEntry child) { return Array.IndexOf(entries, child); } public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } protected virtual void Dispose(bool disposing) { if (disposing) { if (owner != null && entries != null) { for (int i = 0; i < entries.Length; i++) { if (entries[i] != null) { ((GridEntry)entries[i]).Dispose(); entries[i] = null; } } entries = new GridEntry[0]; } } } ~GridEntryCollection() { Dispose(false); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TypeDependencyAttribute.cs
- ObjectStateFormatter.cs
- ThreadAttributes.cs
- PerSessionInstanceContextProvider.cs
- ToolBarPanel.cs
- DoubleLinkListEnumerator.cs
- ElementsClipboardData.cs
- NullableLongAverageAggregationOperator.cs
- validation.cs
- Scripts.cs
- Schema.cs
- SqlReorderer.cs
- MsmqInputChannelListenerBase.cs
- SID.cs
- WebAdminConfigurationHelper.cs
- Expander.cs
- SecUtil.cs
- AccessDataSourceView.cs
- OutputScopeManager.cs
- SecUtil.cs
- CryptoApi.cs
- OleDbStruct.cs
- Expression.DebuggerProxy.cs
- HierarchicalDataTemplate.cs
- PropertyMapper.cs
- ExpressionVisitorHelpers.cs
- DataColumn.cs
- DataControlField.cs
- DBPropSet.cs
- Tuple.cs
- _SafeNetHandles.cs
- HScrollProperties.cs
- TransformGroup.cs
- ChangeToolStripParentVerb.cs
- ReflectEventDescriptor.cs
- SubstitutionDesigner.cs
- CacheVirtualItemsEvent.cs
- ContextInformation.cs
- DataServiceHost.cs
- DataContractSerializerSection.cs
- ListViewEditEventArgs.cs
- WinFormsSecurity.cs
- HostedTransportConfigurationBase.cs
- Latin1Encoding.cs
- __TransparentProxy.cs
- FilteredXmlReader.cs
- ChildDocumentBlock.cs
- TableColumn.cs
- WindowsTitleBar.cs
- DbProviderManifest.cs
- ListBoxChrome.cs
- ServicePoint.cs
- Stack.cs
- XpsFilter.cs
- DesignerListAdapter.cs
- CreateUserWizardStep.cs
- UIElementCollection.cs
- AppDomainAttributes.cs
- Opcode.cs
- PersonalizationProvider.cs
- SqlDataSourceConfigureSortForm.cs
- AssemblyResourceLoader.cs
- NullPackagingPolicy.cs
- CryptoApi.cs
- FormViewModeEventArgs.cs
- ProcessProtocolHandler.cs
- MenuRendererStandards.cs
- ComplusTypeValidator.cs
- RelatedView.cs
- ImageSource.cs
- DateTimeUtil.cs
- DefaultTextStoreTextComposition.cs
- PlainXmlSerializer.cs
- TableLayoutStyleCollection.cs
- Token.cs
- DataServiceRequestException.cs
- InfoCardTraceRecord.cs
- DataViewListener.cs
- CodeSubDirectory.cs
- WebPartHelpVerb.cs
- EllipseGeometry.cs
- MsdtcClusterUtils.cs
- ConfigurationSectionGroupCollection.cs
- Int16Storage.cs
- HasCopySemanticsAttribute.cs
- DispatcherExceptionEventArgs.cs
- Facet.cs
- VariantWrapper.cs
- StretchValidation.cs
- StatusBarItem.cs
- AtomicFile.cs
- TemplateControl.cs
- TextMessageEncoder.cs
- MethodToken.cs
- RegexCaptureCollection.cs
- HtmlAnchor.cs
- SoapMessage.cs
- XmlUtil.cs
- XPathPatternBuilder.cs
- ProtocolsConfigurationHandler.cs