Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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. // //----------------------------------------------------------------------------- /* */ 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
- BooleanProjectedSlot.cs
- GeometryCollection.cs
- SequentialUshortCollection.cs
- ServiceModelSectionGroup.cs
- codemethodreferenceexpression.cs
- SingleAnimation.cs
- _AuthenticationState.cs
- EdmToObjectNamespaceMap.cs
- InternalResources.cs
- RSAPKCS1KeyExchangeFormatter.cs
- WebPartDescription.cs
- TextParaClient.cs
- recordstatescratchpad.cs
- WmfPlaceableFileHeader.cs
- KeyInfo.cs
- CompoundFileStorageReference.cs
- BaseResourcesBuildProvider.cs
- QueryGeneratorBase.cs
- DataGridViewCellPaintingEventArgs.cs
- WindowPatternIdentifiers.cs
- SystemIcons.cs
- HTTPNotFoundHandler.cs
- EventPrivateKey.cs
- HorizontalAlignConverter.cs
- HostProtectionException.cs
- SerialPinChanges.cs
- SmiContextFactory.cs
- OdbcConnectionString.cs
- CustomAttributeBuilder.cs
- StrongNameIdentityPermission.cs
- LabelDesigner.cs
- TdsParserHelperClasses.cs
- WebServiceResponse.cs
- DrawingVisual.cs
- AudioBase.cs
- ConstructorExpr.cs
- ModelItemKeyValuePair.cs
- AlternationConverter.cs
- BamlLocalizabilityResolver.cs
- ConfigurationConverterBase.cs
- TypeConstant.cs
- PromptStyle.cs
- Parameter.cs
- WebPartMinimizeVerb.cs
- CultureTable.cs
- IteratorFilter.cs
- webclient.cs
- FacetDescriptionElement.cs
- StructuredTypeEmitter.cs
- WebBrowserContainer.cs
- StringHandle.cs
- PackageDocument.cs
- InlineObject.cs
- ItemsChangedEventArgs.cs
- TextTreeNode.cs
- TranslateTransform.cs
- ParagraphVisual.cs
- RuleConditionDialog.Designer.cs
- KeyboardEventArgs.cs
- SchemaManager.cs
- ResourcesChangeInfo.cs
- TableLayoutStyle.cs
- CodeVariableDeclarationStatement.cs
- ListControlConvertEventArgs.cs
- XmlSchemaSimpleType.cs
- AudioFormatConverter.cs
- WebBrowserNavigatedEventHandler.cs
- RewritingPass.cs
- DataViewSettingCollection.cs
- CompiledIdentityConstraint.cs
- Line.cs
- DesignerActionService.cs
- LogicalExpressionEditor.cs
- FontFaceLayoutInfo.cs
- _BaseOverlappedAsyncResult.cs
- XmlNavigatorFilter.cs
- TagNameToTypeMapper.cs
- Attributes.cs
- MLangCodePageEncoding.cs
- RecordsAffectedEventArgs.cs
- RemoteCryptoRsaServiceProvider.cs
- PerfCounters.cs
- FormCollection.cs
- EventNotify.cs
- ScriptManagerProxy.cs
- DataServiceBuildProvider.cs
- COM2PropertyDescriptor.cs
- SrgsElement.cs
- HttpCacheParams.cs
- WebResourceUtil.cs
- TimeIntervalCollection.cs
- XmlSchemaAll.cs
- WpfMemberInvoker.cs
- TransformationRules.cs
- RegistrationServices.cs
- DataSourceIDConverter.cs
- SizeChangedEventArgs.cs
- DockingAttribute.cs
- SpecularMaterial.cs
- CodeGen.cs