Code:
/ DotNET / DotNET / 8.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
- ConfigurationSchemaErrors.cs
- JournalNavigationScope.cs
- BrowsableAttribute.cs
- FirstQueryOperator.cs
- JsonEncodingStreamWrapper.cs
- XmlObjectSerializerWriteContextComplex.cs
- ComponentConverter.cs
- TripleDESCryptoServiceProvider.cs
- MethodBuilderInstantiation.cs
- CatalogZoneBase.cs
- ResourcePool.cs
- RestClientProxyHandler.cs
- ScrollChrome.cs
- DelegateHelpers.Generated.cs
- CallbackValidator.cs
- SqlDependency.cs
- ApplicationCommands.cs
- FormViewDeletedEventArgs.cs
- XmlDocumentType.cs
- ApplicationCommands.cs
- SplineQuaternionKeyFrame.cs
- _DigestClient.cs
- TrackBarDesigner.cs
- WebPart.cs
- UniqueCodeIdentifierScope.cs
- RectangleF.cs
- xmlNames.cs
- ClientSettingsProvider.cs
- ButtonAutomationPeer.cs
- ExpressionConverter.cs
- Helper.cs
- EntityDataSourceViewSchema.cs
- Interfaces.cs
- TraceHandler.cs
- XmlEnumAttribute.cs
- GridErrorDlg.cs
- InvokeSchedule.cs
- QuaternionAnimation.cs
- TextEmbeddedObject.cs
- altserialization.cs
- DataObjectCopyingEventArgs.cs
- TimeSpanConverter.cs
- X509Certificate.cs
- StaticFileHandler.cs
- GridViewColumnHeaderAutomationPeer.cs
- OleAutBinder.cs
- ListItemCollection.cs
- Part.cs
- RecordConverter.cs
- MethodBuilder.cs
- WsatConfiguration.cs
- DataSet.cs
- ReadOnlyObservableCollection.cs
- EntityDesignerUtils.cs
- ComponentResourceKeyConverter.cs
- HttpListenerResponse.cs
- SettingsAttributeDictionary.cs
- ParserStreamGeometryContext.cs
- TCEAdapterGenerator.cs
- LoginCancelEventArgs.cs
- ModelItemImpl.cs
- Registry.cs
- Span.cs
- Stackframe.cs
- JsonDeserializer.cs
- DatagridviewDisplayedBandsData.cs
- SuppressMessageAttribute.cs
- ObjectDataSourceEventArgs.cs
- Stroke2.cs
- OleDbCommandBuilder.cs
- SymmetricKey.cs
- ComboBox.cs
- DbConnectionPool.cs
- SourceItem.cs
- SimpleExpression.cs
- InputReportEventArgs.cs
- TextBlockAutomationPeer.cs
- DataRecordInfo.cs
- ActivityMetadata.cs
- ColumnBinding.cs
- Publisher.cs
- OptimizerPatterns.cs
- Attributes.cs
- Pair.cs
- UnknownBitmapEncoder.cs
- ModelItemImpl.cs
- WorkerProcess.cs
- Bitmap.cs
- Pkcs9Attribute.cs
- BitVector32.cs
- WinEventWrap.cs
- ApplicationSecurityManager.cs
- _ContextAwareResult.cs
- FunctionImportMapping.cs
- MimeBasePart.cs
- ProfilePropertySettingsCollection.cs
- XmlNodeChangedEventArgs.cs
- SQLRoleProvider.cs
- HtmlTableCell.cs
- ServerValidateEventArgs.cs