Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeDirectiveCollection.cs / 1 / CodeDirectiveCollection.cs
// ------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // ----------------------------------------------------------------------------- // namespace System.CodeDom { using System; using System.Collections; using System.Runtime.InteropServices; [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable() ] public class CodeDirectiveCollection : CollectionBase { public CodeDirectiveCollection() { } public CodeDirectiveCollection(CodeDirectiveCollection value) { this.AddRange(value); } public CodeDirectiveCollection(CodeDirective[] value) { this.AddRange(value); } public CodeDirective this[int index] { get { return ((CodeDirective)(List[index])); } set { List[index] = value; } } public int Add(CodeDirective value) { return List.Add(value); } public void AddRange(CodeDirective[] value) { if (value == null) { throw new ArgumentNullException("value"); } for (int i = 0; ((i) < (value.Length)); i = ((i) + (1))) { this.Add(value[i]); } } public void AddRange(CodeDirectiveCollection value) { if (value == null) { throw new ArgumentNullException("value"); } int currentCount = value.Count; for (int i = 0; i < currentCount; i = ((i) + (1))) { this.Add(value[i]); } } public bool Contains(CodeDirective value) { return List.Contains(value); } public void CopyTo(CodeDirective[] array, int index) { List.CopyTo(array, index); } public int IndexOf(CodeDirective value) { return List.IndexOf(value); } public void Insert(int index, CodeDirective value) { List.Insert(index, value); } public void Remove(CodeDirective value) { List.Remove(value); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CreateParams.cs
- LogWriteRestartAreaState.cs
- MemberHolder.cs
- SetIndexBinder.cs
- UnsafeNativeMethods.cs
- EntryPointNotFoundException.cs
- Trace.cs
- DbDataReader.cs
- PasswordTextContainer.cs
- GPPOINTF.cs
- Inflater.cs
- WebAdminConfigurationHelper.cs
- TypeGeneratedEventArgs.cs
- XmlQualifiedNameTest.cs
- StaticExtension.cs
- DataGridToolTip.cs
- ScrollProperties.cs
- PageRanges.cs
- ScalarType.cs
- configsystem.cs
- SerialPort.cs
- TextEditorCharacters.cs
- InputBinding.cs
- XmlSchemaSequence.cs
- EntityDataSourceValidationException.cs
- Component.cs
- DataErrorValidationRule.cs
- XmlNodeList.cs
- DocumentPageHost.cs
- DragEvent.cs
- DocobjHost.cs
- X509SecurityTokenProvider.cs
- NumericUpDownAccelerationCollection.cs
- Exception.cs
- Int32KeyFrameCollection.cs
- MemberMaps.cs
- clipboard.cs
- DragCompletedEventArgs.cs
- ParentQuery.cs
- ConstraintEnumerator.cs
- SettingsAttributeDictionary.cs
- MimeReflector.cs
- LogPolicy.cs
- CacheDependency.cs
- MonikerHelper.cs
- ExclusiveNamedPipeTransportManager.cs
- ReflectEventDescriptor.cs
- SqlDataSource.cs
- SimpleHandlerBuildProvider.cs
- Compress.cs
- UnmanagedMemoryStreamWrapper.cs
- SqlProviderServices.cs
- UpdateManifestForBrowserApplication.cs
- documentation.cs
- RemoteEndpointMessageProperty.cs
- InternalMappingException.cs
- ServiceOperation.cs
- sqlinternaltransaction.cs
- ToolStripContainer.cs
- TreeNodeSelectionProcessor.cs
- SocketConnection.cs
- UrlAuthorizationModule.cs
- ToolStripOverflow.cs
- DesignerSerializerAttribute.cs
- PriorityChain.cs
- SoapEnvelopeProcessingElement.cs
- RMPermissions.cs
- MetadataCache.cs
- FormViewAutoFormat.cs
- Border.cs
- FormParameter.cs
- WindowsPrincipal.cs
- BindValidator.cs
- SaveLedgerEntryRequest.cs
- MatrixTransform3D.cs
- ManagementDateTime.cs
- HtmlForm.cs
- ItemAutomationPeer.cs
- PrivilegedConfigurationManager.cs
- KeyToListMap.cs
- DataBindingList.cs
- StylusPointDescription.cs
- login.cs
- PrimaryKeyTypeConverter.cs
- TraceData.cs
- NumericPagerField.cs
- XhtmlBasicPanelAdapter.cs
- FastEncoder.cs
- SamlDoNotCacheCondition.cs
- DataGridViewBindingCompleteEventArgs.cs
- UndoManager.cs
- EventMetadata.cs
- FlowchartDesigner.xaml.cs
- CompleteWizardStep.cs
- MarginsConverter.cs
- basevalidator.cs
- ColorBlend.cs
- updatecommandorderer.cs
- _HelperAsyncResults.cs
- FontStyles.cs