Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / PropertyGridInternal / GridEntryCollection.cs / 1305376 / 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. // //----------------------------------------------------------------------------- /* */ 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- NamedElement.cs
- FileCodeGroup.cs
- AffineTransform3D.cs
- CodeTypeReferenceExpression.cs
- VisualBrush.cs
- WebConfigurationHost.cs
- TextPointerBase.cs
- IgnoreSectionHandler.cs
- ThicknessAnimationUsingKeyFrames.cs
- GPRECTF.cs
- PresentationTraceSources.cs
- WinCategoryAttribute.cs
- UserPreferenceChangedEventArgs.cs
- ThicknessAnimationBase.cs
- OrderByBuilder.cs
- Timer.cs
- EntityDataSourceContainerNameConverter.cs
- XmlSerializationReader.cs
- DesignerView.xaml.cs
- XmlSerializableWriter.cs
- LinqDataSourceInsertEventArgs.cs
- ScrollItemPattern.cs
- CategoryEditor.cs
- LicFileLicenseProvider.cs
- NumberSubstitution.cs
- InternalsVisibleToAttribute.cs
- ZipIOLocalFileHeader.cs
- BaseProcessor.cs
- SQLBinaryStorage.cs
- FormsAuthentication.cs
- RequestBringIntoViewEventArgs.cs
- ListBoxItem.cs
- DBDataPermission.cs
- CursorConverter.cs
- EntityDataSourceWrapperPropertyDescriptor.cs
- ToolStripItemCollection.cs
- TreeViewHitTestInfo.cs
- XmlValidatingReaderImpl.cs
- SqlCacheDependencyDatabase.cs
- TextPatternIdentifiers.cs
- QilStrConcat.cs
- XmlNodeComparer.cs
- EventEntry.cs
- ConfigurationFileMap.cs
- PrintPreviewControl.cs
- LongTypeConverter.cs
- TextSelection.cs
- WindowsFormsHostPropertyMap.cs
- RadioButtonPopupAdapter.cs
- JobInputBins.cs
- Transform3D.cs
- HtmlListAdapter.cs
- WebControlAdapter.cs
- CodeChecksumPragma.cs
- TripleDESCryptoServiceProvider.cs
- HtmlTableRow.cs
- PointLight.cs
- OdbcCommand.cs
- DrawingVisualDrawingContext.cs
- ControlCodeDomSerializer.cs
- IndicShape.cs
- DataGridViewColumnDesigner.cs
- FixedSOMLineCollection.cs
- DataBindingHandlerAttribute.cs
- JsonServiceDocumentSerializer.cs
- DocumentSequence.cs
- NativeMethods.cs
- ToolStripPanel.cs
- x509utils.cs
- AnnotationAdorner.cs
- CollectionContainer.cs
- Calendar.cs
- TimeStampChecker.cs
- Typeface.cs
- SkewTransform.cs
- ReadWriteObjectLock.cs
- ManipulationCompletedEventArgs.cs
- SQLBinary.cs
- SiteMapDataSource.cs
- ActivationServices.cs
- MemoryRecordBuffer.cs
- connectionpool.cs
- TypeTypeConverter.cs
- EntityFunctions.cs
- BuildDependencySet.cs
- WindowsTokenRoleProvider.cs
- Line.cs
- MessageEncodingBindingElementImporter.cs
- CheckBoxFlatAdapter.cs
- MultiAsyncResult.cs
- ParagraphVisual.cs
- DataGridParentRows.cs
- OleDbDataAdapter.cs
- SQLString.cs
- EntityKey.cs
- _NativeSSPI.cs
- MobileCategoryAttribute.cs
- JsonGlobals.cs
- FlagsAttribute.cs
- CryptographicAttribute.cs