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
- MatrixStack.cs
- formatter.cs
- LazyTextWriterCreator.cs
- RuntimeArgumentHandle.cs
- Label.cs
- EncryptedPackageFilter.cs
- NativeObjectSecurity.cs
- XamlGridLengthSerializer.cs
- Logging.cs
- ImageCodecInfo.cs
- EncodingNLS.cs
- GradientPanel.cs
- AttachedAnnotationChangedEventArgs.cs
- ScriptControlDescriptor.cs
- PropertyMapper.cs
- StickyNoteAnnotations.cs
- _TLSstream.cs
- MimePart.cs
- Message.cs
- ObjectHelper.cs
- ListItem.cs
- StrongTypingException.cs
- ListViewGroup.cs
- TimeZoneNotFoundException.cs
- HwndSourceParameters.cs
- DataSourceCacheDurationConverter.cs
- ObjectHelper.cs
- SynchronizationHandlesCodeDomSerializer.cs
- GenericTypeParameterBuilder.cs
- State.cs
- PKCS1MaskGenerationMethod.cs
- TransformValueSerializer.cs
- TemplatedMailWebEventProvider.cs
- MailDefinition.cs
- PageCodeDomTreeGenerator.cs
- securitycriticaldataClass.cs
- AsymmetricSignatureDeformatter.cs
- future.cs
- WindowsSpinner.cs
- RotateTransform.cs
- XmlSchemaSimpleTypeUnion.cs
- SoapSchemaMember.cs
- Monitor.cs
- DoubleAnimationUsingPath.cs
- TypeForwardedToAttribute.cs
- CodeDirectionExpression.cs
- ContainerTracking.cs
- KeyFrames.cs
- SqlCacheDependencyDatabase.cs
- UTF32Encoding.cs
- Viewport3DAutomationPeer.cs
- SerializationSectionGroup.cs
- CallTemplateAction.cs
- HandoffBehavior.cs
- counter.cs
- DispatcherFrame.cs
- ItemType.cs
- FormsIdentity.cs
- SortDescription.cs
- ChangeInterceptorAttribute.cs
- MemberExpressionHelper.cs
- WindowsScrollBarBits.cs
- Keywords.cs
- FastEncoderWindow.cs
- FormViewUpdateEventArgs.cs
- FileRecordSequence.cs
- Int16.cs
- Internal.cs
- SQLMembershipProvider.cs
- UTF8Encoding.cs
- XmlCustomFormatter.cs
- SelectionChangedEventArgs.cs
- BaseDataListActionList.cs
- KeyInstance.cs
- TextBoxBaseDesigner.cs
- ParsedAttributeCollection.cs
- PerfCounters.cs
- BrowserTree.cs
- SplitterCancelEvent.cs
- DataGridViewTopLeftHeaderCell.cs
- AuthenticationException.cs
- FormattedTextSymbols.cs
- EventTrigger.cs
- ProfileProvider.cs
- Baml2006SchemaContext.cs
- SecurityElementBase.cs
- StickyNote.cs
- ClientFormsIdentity.cs
- mediaeventshelper.cs
- PopupControlService.cs
- DataControlFieldCollection.cs
- UrlMapping.cs
- ListViewGroup.cs
- SelectionManager.cs
- FolderBrowserDialog.cs
- URL.cs
- ServerValidateEventArgs.cs
- DoubleIndependentAnimationStorage.cs
- RecognizerInfo.cs
- DispatcherObject.cs