Code:
/ DotNET / DotNET / 8.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
- HostProtectionException.cs
- Pointer.cs
- FileRegion.cs
- VectorValueSerializer.cs
- JumpItem.cs
- PersonalizationStateInfoCollection.cs
- VScrollProperties.cs
- mediaeventargs.cs
- OutputCacheModule.cs
- XPathNodePointer.cs
- TypedServiceChannelBuilder.cs
- ContextStack.cs
- XmlUtf8RawTextWriter.cs
- RecognizedWordUnit.cs
- arc.cs
- ServiceChannel.cs
- PropertyEntry.cs
- MediaSystem.cs
- RightsManagementResourceHelper.cs
- SplitterEvent.cs
- ProfilePropertyNameValidator.cs
- Binding.cs
- SystemWebCachingSectionGroup.cs
- PassportPrincipal.cs
- CodeNamespaceImportCollection.cs
- EntityContainerEmitter.cs
- DynamicDiscoSearcher.cs
- hwndwrapper.cs
- XPathChildIterator.cs
- XmlChildNodes.cs
- LinkDescriptor.cs
- TaskbarItemInfo.cs
- Substitution.cs
- NameValueConfigurationElement.cs
- PkcsUtils.cs
- XmlException.cs
- SecurityResources.cs
- Registry.cs
- VirtualPathData.cs
- ComponentChangedEvent.cs
- RuntimeConfigLKG.cs
- UseAttributeSetsAction.cs
- EncodingDataItem.cs
- WebPart.cs
- XmlSchemaException.cs
- FrugalMap.cs
- PresentationSource.cs
- AlternateView.cs
- HashRepartitionEnumerator.cs
- FixedSOMPageConstructor.cs
- SurrogateSelector.cs
- DurableInstancingOptions.cs
- CompilerParameters.cs
- ScrollBarAutomationPeer.cs
- figurelengthconverter.cs
- GlyphRun.cs
- WinEventQueueItem.cs
- UInt16Storage.cs
- CodeThrowExceptionStatement.cs
- ThemeableAttribute.cs
- CompilationLock.cs
- RuleSetBrowserDialog.cs
- WaitHandleCannotBeOpenedException.cs
- RegexCompiler.cs
- GlyphShapingProperties.cs
- DataServiceQueryException.cs
- SchemaTableOptionalColumn.cs
- ForwardPositionQuery.cs
- WindowPatternIdentifiers.cs
- CodeSnippetTypeMember.cs
- ImageFormatConverter.cs
- Marshal.cs
- ActivityDesignerHighlighter.cs
- ControllableStoryboardAction.cs
- InputLanguageEventArgs.cs
- XmlNamespaceMappingCollection.cs
- SettingsPropertyValueCollection.cs
- HwndHostAutomationPeer.cs
- entitydatasourceentitysetnameconverter.cs
- SQLBytesStorage.cs
- LayoutUtils.cs
- StoragePropertyMapping.cs
- ComponentTray.cs
- SharedPerformanceCounter.cs
- HttpListenerException.cs
- ToolBarPanel.cs
- ListItemConverter.cs
- Command.cs
- DataBoundControl.cs
- TypeNameConverter.cs
- SystemResourceKey.cs
- XmlQualifiedNameTest.cs
- CompilerTypeWithParams.cs
- XmlnsDefinitionAttribute.cs
- _BufferOffsetSize.cs
- ModelItem.cs
- UIPermission.cs
- BaseResourcesBuildProvider.cs
- OneOfScalarConst.cs
- ToolboxCategory.cs