Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeStatementCollection.cs / 1305376 / CodeStatementCollection.cs
// ------------------------------------------------------------------------------ //// // // ----------------------------------------------------------------------------- // namespace System.CodeDom { using System; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeStatementCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeStatementCollection() { } ////// Initializes a new instance of ///. /// /// public CodeStatementCollection(CodeStatementCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeStatementCollection(CodeStatement[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeStatement this[int index] { get { return ((CodeStatement)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeStatement value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public int Add(CodeExpression value) { return Add(new CodeExpressionStatement(value)); } ///[To be supplied.] ////// public void AddRange(CodeStatement[] value) { if (value == null) { throw new ArgumentNullException("value"); } for (int i = 0; ((i) < (value.Length)); i = ((i) + (1))) { this.Add(value[i]); } } ///Copies the elements of an array to the end of the ///. /// public void AddRange(CodeStatementCollection 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]); } } ////// Adds the contents of another ///to the end of the collection. /// /// public bool Contains(CodeStatement value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeStatement[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeStatement value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeStatement value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeStatement value) { List.Remove(value); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ------------------------------------------------------------------------------ //Removes a specific ///from the /// . // // // ----------------------------------------------------------------------------- // namespace System.CodeDom { using System; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeStatementCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeStatementCollection() { } ////// Initializes a new instance of ///. /// /// public CodeStatementCollection(CodeStatementCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeStatementCollection(CodeStatement[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeStatement this[int index] { get { return ((CodeStatement)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeStatement value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public int Add(CodeExpression value) { return Add(new CodeExpressionStatement(value)); } ///[To be supplied.] ////// public void AddRange(CodeStatement[] value) { if (value == null) { throw new ArgumentNullException("value"); } for (int i = 0; ((i) < (value.Length)); i = ((i) + (1))) { this.Add(value[i]); } } ///Copies the elements of an array to the end of the ///. /// public void AddRange(CodeStatementCollection 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]); } } ////// Adds the contents of another ///to the end of the collection. /// /// public bool Contains(CodeStatement value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeStatement[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeStatement value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeStatement value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeStatement value) { List.Remove(value); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Removes a specific ///from the /// .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FontFamilyConverter.cs
- ChtmlImageAdapter.cs
- BitmapSizeOptions.cs
- CompilationSection.cs
- RelationshipFixer.cs
- Config.cs
- XmlUtil.cs
- FacetDescriptionElement.cs
- Oci.cs
- SecurityDescriptor.cs
- FloaterBaseParaClient.cs
- SafeNativeMethods.cs
- HttpProxyCredentialType.cs
- Typography.cs
- EntityCommandDefinition.cs
- JsonDeserializer.cs
- LongValidator.cs
- CriticalFinalizerObject.cs
- UnauthorizedAccessException.cs
- BypassElementCollection.cs
- HtmlContainerControl.cs
- InnerItemCollectionView.cs
- NextPreviousPagerField.cs
- ProtocolViolationException.cs
- ConcurrentDictionary.cs
- CompiledQueryCacheKey.cs
- AdvancedBindingEditor.cs
- ThrowHelper.cs
- SHA1CryptoServiceProvider.cs
- SrgsElementFactoryCompiler.cs
- WebPartUserCapability.cs
- XmlnsCache.cs
- BuildProvider.cs
- OciEnlistContext.cs
- WmlPageAdapter.cs
- SigningProgress.cs
- OrthographicCamera.cs
- FormParameter.cs
- HostingEnvironmentSection.cs
- InkCanvasSelection.cs
- RelatedImageListAttribute.cs
- BufferModeSettings.cs
- COAUTHINFO.cs
- SharedConnectionInfo.cs
- MsmqIntegrationProcessProtocolHandler.cs
- ValidationVisibilityAttribute.cs
- DragStartedEventArgs.cs
- DataListItemCollection.cs
- PointIndependentAnimationStorage.cs
- PathFigureCollectionConverter.cs
- ObjectManager.cs
- MouseActionConverter.cs
- RenderContext.cs
- HtmlInputControl.cs
- LowerCaseStringConverter.cs
- BulletedListEventArgs.cs
- SmtpDigestAuthenticationModule.cs
- IdnMapping.cs
- XmlExpressionDumper.cs
- ObfuscationAttribute.cs
- TemplateModeChangedEventArgs.cs
- PartialArray.cs
- basecomparevalidator.cs
- SynchronizedRandom.cs
- CodeGroup.cs
- Span.cs
- SmiSettersStream.cs
- LazyInitializer.cs
- TextWriter.cs
- IdnElement.cs
- WebBrowserBase.cs
- InternalsVisibleToAttribute.cs
- UnitySerializationHolder.cs
- ClientConfigurationSystem.cs
- AppDomainFactory.cs
- MemberCollection.cs
- EpmCustomContentWriterNodeData.cs
- EntityTransaction.cs
- ResourceReferenceExpressionConverter.cs
- Application.cs
- EntityDataReader.cs
- GatewayIPAddressInformationCollection.cs
- JsonClassDataContract.cs
- RoleExceptions.cs
- StreamInfo.cs
- EDesignUtil.cs
- FontStyleConverter.cs
- ManagedCodeMarkers.cs
- PreDigestedSignedInfo.cs
- TextContainerHelper.cs
- UIElement3D.cs
- MyContact.cs
- HtmlForm.cs
- ApplicationException.cs
- SQLDoubleStorage.cs
- CookieProtection.cs
- HtmlFormParameterWriter.cs
- Screen.cs
- WebRequestModuleElementCollection.cs
- NavigationProperty.cs