Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / Data / BaseCollection.cs / 1305376 / BaseCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data { using System; using System.Collections; using System.ComponentModel; using System.Globalization; ////// public class InternalDataCollectionBase : ICollection { internal static CollectionChangeEventArgs RefreshEventArgs = new CollectionChangeEventArgs(CollectionChangeAction.Refresh, null); //================================================== // the ICollection methods //================================================== ///Provides the base functionality for creating collections. ////// [ Browsable(false) ] public virtual int Count { get { return List.Count; } } public virtual void CopyTo(Array ar, int index) { List.CopyTo(ar, index); } public virtual IEnumerator GetEnumerator() { return List.GetEnumerator(); } [ Browsable(false) ] public bool IsReadOnly { get { return false; } } [Browsable(false)] public bool IsSynchronized { get { // so the user will know that it has to lock this object return false; } } // Return value: // > 0 (1) : CaseSensitve equal // < 0 (-1) : Case-Insensitive Equal // = 0 : Not Equal internal int NamesEqual(string s1, string s2, bool fCaseSensitive, CultureInfo locale) { if (fCaseSensitive) { if (String.Compare(s1, s2, false, locale) == 0) return 1; else return 0; } // Case, kana and width -Insensitive compare if (locale.CompareInfo.Compare(s1, s2, CompareOptions.IgnoreCase | CompareOptions.IgnoreKanaType | CompareOptions.IgnoreWidth) == 0) { if (String.Compare(s1, s2, false, locale) == 0) return 1; else return -1; } return 0; } [Browsable(false)] public object SyncRoot { get { return this; } } protected virtual ArrayList List { get { return null; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Gets the total number of elements in a collection. ///// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data { using System; using System.Collections; using System.ComponentModel; using System.Globalization; ////// public class InternalDataCollectionBase : ICollection { internal static CollectionChangeEventArgs RefreshEventArgs = new CollectionChangeEventArgs(CollectionChangeAction.Refresh, null); //================================================== // the ICollection methods //================================================== ///Provides the base functionality for creating collections. ////// [ Browsable(false) ] public virtual int Count { get { return List.Count; } } public virtual void CopyTo(Array ar, int index) { List.CopyTo(ar, index); } public virtual IEnumerator GetEnumerator() { return List.GetEnumerator(); } [ Browsable(false) ] public bool IsReadOnly { get { return false; } } [Browsable(false)] public bool IsSynchronized { get { // so the user will know that it has to lock this object return false; } } // Return value: // > 0 (1) : CaseSensitve equal // < 0 (-1) : Case-Insensitive Equal // = 0 : Not Equal internal int NamesEqual(string s1, string s2, bool fCaseSensitive, CultureInfo locale) { if (fCaseSensitive) { if (String.Compare(s1, s2, false, locale) == 0) return 1; else return 0; } // Case, kana and width -Insensitive compare if (locale.CompareInfo.Compare(s1, s2, CompareOptions.IgnoreCase | CompareOptions.IgnoreKanaType | CompareOptions.IgnoreWidth) == 0) { if (String.Compare(s1, s2, false, locale) == 0) return 1; else return -1; } return 0; } [Browsable(false)] public object SyncRoot { get { return this; } } protected virtual ArrayList List { get { return null; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Gets the total number of elements in a collection. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CodeDomLocalizationProvider.cs
- SelectionWordBreaker.cs
- EditableRegion.cs
- Process.cs
- _TLSstream.cs
- TemplateControlBuildProvider.cs
- CryptoStream.cs
- CommonProperties.cs
- ListViewInsertionMark.cs
- CellTreeNode.cs
- TraceSection.cs
- Figure.cs
- WsdlBuildProvider.cs
- X509Certificate.cs
- HierarchicalDataBoundControl.cs
- DataGridItemCollection.cs
- UnsafeNativeMethods.cs
- Block.cs
- ManipulationPivot.cs
- EntityRecordInfo.cs
- AvTrace.cs
- SchemaElementDecl.cs
- CodeGen.cs
- Internal.cs
- StyleSheet.cs
- ComPersistableTypeElementCollection.cs
- HttpFileCollectionBase.cs
- SerializationEventsCache.cs
- BinaryVersion.cs
- GeneratedCodeAttribute.cs
- StringFormat.cs
- Single.cs
- SqlConnectionPoolProviderInfo.cs
- TimeSpan.cs
- COSERVERINFO.cs
- CultureInfoConverter.cs
- Int32.cs
- DataRow.cs
- StringCollection.cs
- PrePostDescendentsWalker.cs
- Configuration.cs
- CustomGrammar.cs
- HttpHandlersSection.cs
- FlowLayoutPanel.cs
- EventManager.cs
- LocalFileSettingsProvider.cs
- HashHelpers.cs
- baseaxisquery.cs
- WebPartCollection.cs
- PathStreamGeometryContext.cs
- _ScatterGatherBuffers.cs
- ValidatorCollection.cs
- RoleManagerModule.cs
- RSAPKCS1SignatureDeformatter.cs
- BamlRecordReader.cs
- BamlLocalizableResourceKey.cs
- X509SecurityTokenAuthenticator.cs
- MsmqIntegrationChannelListener.cs
- SerialPort.cs
- LinqExpressionNormalizer.cs
- SubqueryRules.cs
- sqlinternaltransaction.cs
- _Win32.cs
- CachedFontFace.cs
- Model3D.cs
- ValidationSummary.cs
- TypeGenericEnumerableViewSchema.cs
- AttributeEmitter.cs
- PropertyTab.cs
- securitycriticaldata.cs
- NeutralResourcesLanguageAttribute.cs
- AccessibilityHelperForVista.cs
- RC2.cs
- PostBackOptions.cs
- mansign.cs
- OrderedDictionaryStateHelper.cs
- EncryptedType.cs
- IconHelper.cs
- ProtocolsConfiguration.cs
- SoapWriter.cs
- ContextProperty.cs
- DependencyPropertyValueSerializer.cs
- WindowsFont.cs
- PackWebResponse.cs
- CompiledAction.cs
- HttpValueCollection.cs
- AuthorizationSection.cs
- CustomBindingElement.cs
- ConfigXmlElement.cs
- ResourceDescriptionAttribute.cs
- EndpointDiscoveryMetadata11.cs
- StreamGeometry.cs
- DragDrop.cs
- VisualStyleElement.cs
- JumpTask.cs
- IERequestCache.cs
- DataServiceKeyAttribute.cs
- TextEffect.cs
- SqlDataSourceParameterParser.cs
- BooleanAnimationBase.cs