Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / StringArrayConverter.cs / 1305376 / StringArrayConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System.ComponentModel.Design; using System; using System.ComponentModel; using System.Collections; using System.Globalization; // ////// public class StringArrayConverter : TypeConverter { ///Converts a string separated by commas to and from /// an array of strings. ////// public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } return false; } ///Determines if the specified data type can be converted to an array of strings. ////// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value is string) { if (((string)value).Length == 0) { return new string[0]; } // hard code comma, since it is persisted to HTML // string[] names = ((string)value).Split(new char[] {','}); for (int i=0; iParses a string separated by /// commas into an array of strings. ////// Creates a string separated /// by commas from an array of strings. /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == typeof(string)) { if (value == null) { return String.Empty; } // hard code comma, since it is persisted to HTML // return string.Join(",", ((string[])value)); } throw GetConvertToException(value, destinationType); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RefreshPropertiesAttribute.cs
- XsdBuildProvider.cs
- ExceptionList.cs
- ProjectionPathSegment.cs
- SoapIgnoreAttribute.cs
- RemotingSurrogateSelector.cs
- PathGeometry.cs
- EntityDataSourceWrapperCollection.cs
- PropertyBuilder.cs
- Attachment.cs
- XmlILStorageConverter.cs
- BooleanFunctions.cs
- RoleManagerSection.cs
- PresentationSource.cs
- XslAst.cs
- UnmanagedMemoryStream.cs
- UrlPath.cs
- AssemblyResourceLoader.cs
- MaskInputRejectedEventArgs.cs
- MaterialGroup.cs
- PeerToPeerException.cs
- RepeatButton.cs
- RadioButtonDesigner.cs
- ProvidersHelper.cs
- EarlyBoundInfo.cs
- BoundField.cs
- WebPartMenuStyle.cs
- DocumentViewerHelper.cs
- DirectoryObjectSecurity.cs
- NumberSubstitution.cs
- StyleCollection.cs
- SchemaElement.cs
- TextProperties.cs
- ImageCodecInfo.cs
- DataTemplate.cs
- SchemaImporterExtensionElement.cs
- Table.cs
- XmlSchemaType.cs
- SchemaImporterExtensionElement.cs
- InvalidComObjectException.cs
- TextViewElement.cs
- HelloOperationCD1AsyncResult.cs
- WebConfigurationFileMap.cs
- KerberosTicketHashIdentifierClause.cs
- XmlSchemaDatatype.cs
- SudsParser.cs
- PointKeyFrameCollection.cs
- ButtonFieldBase.cs
- PrtTicket_Editor.cs
- Binding.cs
- PlanCompiler.cs
- KeyedQueue.cs
- OperatorExpressions.cs
- XmlCharCheckingReader.cs
- WindowsScroll.cs
- PlanCompiler.cs
- KeyboardEventArgs.cs
- HttpStaticObjectsCollectionWrapper.cs
- MarginCollapsingState.cs
- MaterialGroup.cs
- InstanceLockQueryResult.cs
- ControlCachePolicy.cs
- GuidConverter.cs
- EntityDataSource.cs
- ToolBarButton.cs
- HtmlFormWrapper.cs
- AQNBuilder.cs
- ResourceBinder.cs
- DataBindingCollection.cs
- InfoCardProofToken.cs
- ConnectionOrientedTransportManager.cs
- TextRangeProviderWrapper.cs
- InternalConfigHost.cs
- Highlights.cs
- HighlightVisual.cs
- SqlConnectionPoolProviderInfo.cs
- NativeMethods.cs
- SubstitutionDesigner.cs
- Queue.cs
- BamlResourceContent.cs
- CultureSpecificCharacterBufferRange.cs
- BinaryKeyIdentifierClause.cs
- HttpsHostedTransportConfiguration.cs
- MessageVersionConverter.cs
- sortedlist.cs
- HtmlTableRowCollection.cs
- DictionaryChange.cs
- SerializationSectionGroup.cs
- MessageBuffer.cs
- RuntimeHelpers.cs
- DirectionalLight.cs
- CodeDomSerializer.cs
- PropertyValueUIItem.cs
- TextRenderer.cs
- MessageContractImporter.cs
- BitmapEffectRenderDataResource.cs
- ScriptingScriptResourceHandlerSection.cs
- XmlSignatureManifest.cs
- InstanceDescriptor.cs
- TextFormatterHost.cs