Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- FunctionImportElement.cs
- Pen.cs
- ToolStripSettings.cs
- TemplatingOptionsDialog.cs
- RefType.cs
- CfgParser.cs
- ChooseAction.cs
- UTF7Encoding.cs
- CompilerParameters.cs
- ColorBlend.cs
- GradientStop.cs
- NativeObjectSecurity.cs
- ResolveNameEventArgs.cs
- DeleteHelper.cs
- ListBoxChrome.cs
- DisplayNameAttribute.cs
- ByteKeyFrameCollection.cs
- EntityTemplateUserControl.cs
- SystemColors.cs
- ProfilePropertySettingsCollection.cs
- InternalMappingException.cs
- TypedTableGenerator.cs
- DeploymentExceptionMapper.cs
- CommunicationObjectFaultedException.cs
- DoubleKeyFrameCollection.cs
- CodeExporter.cs
- BitSet.cs
- XamlVector3DCollectionSerializer.cs
- TextTreePropertyUndoUnit.cs
- FontSourceCollection.cs
- ObjectIDGenerator.cs
- IgnoreSectionHandler.cs
- AnnotationResourceCollection.cs
- TextSpanModifier.cs
- MenuItemAutomationPeer.cs
- DbLambda.cs
- _TransmitFileOverlappedAsyncResult.cs
- DynamicRenderer.cs
- XsdDateTime.cs
- OleDbConnection.cs
- ClientSession.cs
- CodeAccessPermission.cs
- DataServiceClientException.cs
- DataGridColumnHeaderAutomationPeer.cs
- AppDomainProtocolHandler.cs
- PointLightBase.cs
- Panel.cs
- DesignTimeTemplateParser.cs
- LayoutSettings.cs
- LogSwitch.cs
- XmlFormatExtensionAttribute.cs
- ServiceDescriptionImporter.cs
- xmlfixedPageInfo.cs
- ExpressionCopier.cs
- ToolBarTray.cs
- DesignerSerializationOptionsAttribute.cs
- MapPathBasedVirtualPathProvider.cs
- OleDbPropertySetGuid.cs
- SignatureHelper.cs
- CacheForPrimitiveTypes.cs
- DefinitionUpdate.cs
- SequentialWorkflowRootDesigner.cs
- ExpressionEditorAttribute.cs
- ZoomPercentageConverter.cs
- ContentElementCollection.cs
- TcpSocketManager.cs
- HostingEnvironment.cs
- PersonalizationState.cs
- MimeImporter.cs
- BlurEffect.cs
- SiteMapDataSourceView.cs
- PeerNameRecord.cs
- IndexObject.cs
- PropertyPathWorker.cs
- EpmContentSerializerBase.cs
- FontInfo.cs
- BitSet.cs
- MonthChangedEventArgs.cs
- DayRenderEvent.cs
- StringFunctions.cs
- QueryReaderSettings.cs
- DbProviderFactory.cs
- CodeExpressionCollection.cs
- SQLDoubleStorage.cs
- FormattedText.cs
- ScriptReferenceBase.cs
- SqlBuffer.cs
- SqlUtil.cs
- SingleAnimation.cs
- TreeNodeCollection.cs
- PersonalizationProvider.cs
- TryCatch.cs
- RegexNode.cs
- CacheOutputQuery.cs
- JoinTreeNode.cs
- TreeWalker.cs
- HtmlTableRow.cs
- RenderData.cs
- CellParagraph.cs
- SettingsAttributeDictionary.cs