Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / CompMod / System / ComponentModel / Design / Data / DataSourceGroupCollection.cs / 1 / DataSourceGroupCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel.Design.Data { using System; using System.Collections; ////// /// Type safe collection of DataSourceGroup objects. /// public class DataSourceGroupCollection : CollectionBase { ////// /// public DataSourceGroupCollection() : base() { } ////// /// public int Add(DataSourceGroup value) { return List.Add(value); } ////// /// public int IndexOf(DataSourceGroup value) { return List.IndexOf(value); } ////// /// public void Insert(int index, DataSourceGroup value) { List.Insert(index, value); } ////// /// public bool Contains(DataSourceGroup value) { return List.Contains(value); } ////// /// public void CopyTo(DataSourceGroup[] array, int index) { List.CopyTo(array, index); } ////// /// public void Remove(DataSourceGroup value) { List.Remove(value); } ////// /// public DataSourceGroup this[int index] { get { return (DataSourceGroup) List[index]; } set { List[index] = value; } } } } // 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
- UndirectedGraph.cs
- ProtectedConfigurationSection.cs
- SafeMILHandle.cs
- FormViewModeEventArgs.cs
- HtmlElementEventArgs.cs
- ProviderCollection.cs
- BulletChrome.cs
- SpecialNameAttribute.cs
- Tile.cs
- StyleHelper.cs
- TextEditorCopyPaste.cs
- RequestDescription.cs
- PageVisual.cs
- ProvidersHelper.cs
- XmlWellformedWriter.cs
- BindUriHelper.cs
- PagedDataSource.cs
- ValidationException.cs
- WindowsScroll.cs
- PathTooLongException.cs
- Normalization.cs
- _HelperAsyncResults.cs
- ReaderContextStackData.cs
- SizeChangedEventArgs.cs
- CodeTypeDeclarationCollection.cs
- AppSettingsSection.cs
- WebPartDescriptionCollection.cs
- HtmlControlPersistable.cs
- MessageVersionConverter.cs
- PkcsMisc.cs
- SafeViewOfFileHandle.cs
- FacetValues.cs
- BinaryNegotiation.cs
- RightsController.cs
- PrimitiveDataContract.cs
- __ComObject.cs
- ReferenceEqualityComparer.cs
- DataSourceDescriptorCollection.cs
- BasicKeyConstraint.cs
- StringPropertyBuilder.cs
- SqlDependency.cs
- HttpCookiesSection.cs
- NativeCppClassAttribute.cs
- XmlAttributeCollection.cs
- BindingBase.cs
- HandlerWithFactory.cs
- MiniParameterInfo.cs
- CorrelationManager.cs
- TypeLoadException.cs
- UrlMappingCollection.cs
- ExpressionBuilder.cs
- HtmlInputReset.cs
- DelegateSerializationHolder.cs
- GridViewRow.cs
- SocketPermission.cs
- ScriptReferenceBase.cs
- Input.cs
- formatter.cs
- LinkedDataMemberFieldEditor.cs
- ACL.cs
- CodeMemberProperty.cs
- DataGridViewSelectedRowCollection.cs
- WebEvents.cs
- LinkLabelLinkClickedEvent.cs
- ExpressionPrefixAttribute.cs
- HeaderLabel.cs
- ProvidersHelper.cs
- QueueProcessor.cs
- EncoderNLS.cs
- EnumerableRowCollectionExtensions.cs
- sqlinternaltransaction.cs
- BamlLocalizationDictionary.cs
- EventDescriptor.cs
- Stopwatch.cs
- XmlHierarchyData.cs
- ConditionalAttribute.cs
- IProducerConsumerCollection.cs
- Int64.cs
- InfoCardXmlSerializer.cs
- XmlBinaryReader.cs
- DataRowExtensions.cs
- ThreadStaticAttribute.cs
- OleDbConnection.cs
- ObjectQuery_EntitySqlExtensions.cs
- SqlRowUpdatingEvent.cs
- TcpHostedTransportConfiguration.cs
- CodeDelegateCreateExpression.cs
- DbConnectionOptions.cs
- EndOfStreamException.cs
- CachedFontFamily.cs
- DesignerActionItemCollection.cs
- HttpConfigurationSystem.cs
- RenderContext.cs
- Color.cs
- HttpServerVarsCollection.cs
- PathNode.cs
- WrappedIUnknown.cs
- DoubleLink.cs
- GridView.cs
- Propagator.ExtentPlaceholderCreator.cs