Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / InputLanguageCollection.cs / 1305376 / 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.Returns the index of a ///in /// the .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- autovalidator.cs
- ToolTip.cs
- BaseWebProxyFinder.cs
- DbMetaDataCollectionNames.cs
- Scheduling.cs
- WebBrowserPermission.cs
- DataGridViewSelectedCellCollection.cs
- invalidudtexception.cs
- DebugView.cs
- WindowsIPAddress.cs
- ActivityBuilder.cs
- SQLSingle.cs
- ParenthesizePropertyNameAttribute.cs
- EntityUtil.cs
- PathGeometry.cs
- LabelEditEvent.cs
- MD5.cs
- SoapTransportImporter.cs
- FileDialogPermission.cs
- FontCacheUtil.cs
- QueryCacheKey.cs
- ContentValidator.cs
- CancelEventArgs.cs
- AudioFormatConverter.cs
- CodeRegionDirective.cs
- OdbcDataAdapter.cs
- KerberosTokenFactoryCredential.cs
- RepeatInfo.cs
- TextChangedEventArgs.cs
- VisualTreeUtils.cs
- CapabilitiesUse.cs
- SafeSystemMetrics.cs
- ListViewDataItem.cs
- TagPrefixInfo.cs
- InvalidOperationException.cs
- XmlValidatingReaderImpl.cs
- UriScheme.cs
- LoginCancelEventArgs.cs
- ProfileGroupSettings.cs
- StaticSiteMapProvider.cs
- RegexReplacement.cs
- DESCryptoServiceProvider.cs
- DescendentsWalkerBase.cs
- TextDecoration.cs
- Claim.cs
- MsmqIntegrationOutputChannel.cs
- COMException.cs
- InputScopeNameConverter.cs
- DataGridViewRowPostPaintEventArgs.cs
- IconHelper.cs
- GenericsInstances.cs
- AuthStoreRoleProvider.cs
- CodeTypeMemberCollection.cs
- ConvertersCollection.cs
- WithParamAction.cs
- DataGridViewRowConverter.cs
- LogEntrySerializationException.cs
- RotateTransform3D.cs
- SHA1Managed.cs
- DrawItemEvent.cs
- RouteParameter.cs
- RestrictedTransactionalPackage.cs
- DBAsyncResult.cs
- DesignerTransaction.cs
- XmlSchemaSimpleTypeUnion.cs
- EdmProviderManifest.cs
- AuthenticationSection.cs
- SqlCommandBuilder.cs
- dataprotectionpermissionattribute.cs
- HttpDebugHandler.cs
- RequestSecurityTokenForRemoteTokenFactory.cs
- SqlConnection.cs
- XmlBinaryReader.cs
- AuthorizationSection.cs
- WindowsRichEdit.cs
- WhitespaceSignificantCollectionAttribute.cs
- ApplicationServiceHelper.cs
- BindValidator.cs
- SafeNativeMethods.cs
- FixedSOMFixedBlock.cs
- BitmapEncoder.cs
- ImageMap.cs
- BindingGroup.cs
- WebServiceParameterData.cs
- XmlComment.cs
- BindingEntityInfo.cs
- ADRole.cs
- ScrollBar.cs
- CellPartitioner.cs
- EditorZone.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- RegexRunnerFactory.cs
- ObjectHandle.cs
- CachingHintValidation.cs
- System.Data_BID.cs
- DependencySource.cs
- ZipIOBlockManager.cs
- SqlProcedureAttribute.cs
- XmlMtomReader.cs
- RNGCryptoServiceProvider.cs