Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / InputLanguageCollection.cs / 1 / InputLanguageCollection.cs
// ------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // ----------------------------------------------------------------------------- // namespace System.Windows.Forms { using System; using System.Collections; ////// /// public class InputLanguageCollection : ReadOnlyCollectionBase { ////// A collection that stores ///objects. /// /// /// internal InputLanguageCollection(InputLanguage[] value) { InnerList.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// /// public InputLanguage this[int index] { get { return ((InputLanguage)(InnerList[index])); } } ///Represents the entry at the specified index of the ///. /// /// public bool Contains(InputLanguage value) { return InnerList.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// /// public void CopyTo(InputLanguage[] array, int index) { InnerList.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// /// public int IndexOf(InputLanguage value) { return InnerList.IndexOf(value); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Returns the index of a ///in /// the .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- X509CertificateValidationMode.cs
- EventProviderWriter.cs
- CssStyleCollection.cs
- HttpRequestWrapper.cs
- BamlVersionHeader.cs
- NumberFormatInfo.cs
- Panel.cs
- SatelliteContractVersionAttribute.cs
- DataExpression.cs
- Cursor.cs
- ApplicationSecurityManager.cs
- SafeArrayTypeMismatchException.cs
- UTF7Encoding.cs
- DataSourceIDConverter.cs
- DataRow.cs
- AnimatedTypeHelpers.cs
- AuthenticationConfig.cs
- ConfigXmlElement.cs
- ProjectionPruner.cs
- AccessibleObject.cs
- Hyperlink.cs
- DescendantQuery.cs
- DbModificationCommandTree.cs
- FormViewDeletedEventArgs.cs
- HtmlWindow.cs
- SqlCommand.cs
- Point3DAnimation.cs
- SqlDataSourceSelectingEventArgs.cs
- elementinformation.cs
- CodeGeneratorAttribute.cs
- PathNode.cs
- Composition.cs
- XmlValueConverter.cs
- TextContainerChangeEventArgs.cs
- StateWorkerRequest.cs
- ElementAction.cs
- RadioButton.cs
- DocumentCollection.cs
- PipeStream.cs
- SqlDataSourceCommandEventArgs.cs
- AssemblyAttributesGoHere.cs
- RadioButtonFlatAdapter.cs
- Vector3DCollectionConverter.cs
- LocationSectionRecord.cs
- CodeAttributeDeclaration.cs
- Annotation.cs
- MessageQueuePermissionEntryCollection.cs
- cookie.cs
- DynamicPropertyReader.cs
- ZipIOModeEnforcingStream.cs
- Rect.cs
- MetadataException.cs
- ListViewAutomationPeer.cs
- Guid.cs
- ImageSourceConverter.cs
- SizeConverter.cs
- _LazyAsyncResult.cs
- XmlAttributeProperties.cs
- handlecollector.cs
- XmlUrlEditor.cs
- TypeReference.cs
- ResourceDefaultValueAttribute.cs
- TextEffectCollection.cs
- DataGridHelper.cs
- SessionPageStateSection.cs
- MenuCommands.cs
- DataPointer.cs
- RestClientProxyHandler.cs
- _ListenerRequestStream.cs
- PropertyRef.cs
- Pair.cs
- mediaeventargs.cs
- GCHandleCookieTable.cs
- FileSecurity.cs
- WriteableBitmap.cs
- KeyInterop.cs
- TextRangeEditLists.cs
- Pair.cs
- PropertyRecord.cs
- CatalogPartChrome.cs
- SystemIPInterfaceProperties.cs
- StringComparer.cs
- Transform.cs
- AppDomain.cs
- SystemFonts.cs
- UpDownBase.cs
- RegexWorker.cs
- SessionViewState.cs
- ProfileModule.cs
- TripleDESCryptoServiceProvider.cs
- EndpointAddress.cs
- InvalidWMPVersionException.cs
- EditorPartCollection.cs
- PathFigureCollection.cs
- CollectionBuilder.cs
- FileDialog.cs
- MaskInputRejectedEventArgs.cs
- RequestedSignatureDialog.cs
- X509Certificate2.cs
- XmlDataSourceView.cs