Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- ChangeProcessor.cs
- ApplicationDirectory.cs
- ParameterCollection.cs
- WinEventWrap.cs
- UntrustedRecipientException.cs
- Int16Storage.cs
- DispatcherObject.cs
- DataControlField.cs
- CompressionTransform.cs
- MemberAssignment.cs
- ScrollData.cs
- TextBoxAutomationPeer.cs
- CorrelationTokenTypeConvertor.cs
- XamlPoint3DCollectionSerializer.cs
- PropertyIDSet.cs
- _FtpDataStream.cs
- EdmProviderManifest.cs
- ConfigPathUtility.cs
- Bind.cs
- PathSegmentCollection.cs
- UnSafeCharBuffer.cs
- ProfileSettings.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- HtmlElement.cs
- SessionStateUtil.cs
- ValueTypeFixupInfo.cs
- SolidColorBrush.cs
- ProtocolsSection.cs
- DataRecord.cs
- GregorianCalendar.cs
- PolicyStatement.cs
- Grid.cs
- TextServicesDisplayAttribute.cs
- TextPointer.cs
- PlanCompiler.cs
- HScrollProperties.cs
- Activator.cs
- TrackingServices.cs
- XmlNodeComparer.cs
- DataExpression.cs
- LowerCaseStringConverter.cs
- ReflectTypeDescriptionProvider.cs
- IgnoreSection.cs
- TranslateTransform3D.cs
- TableDetailsCollection.cs
- SystemIPGlobalStatistics.cs
- OAVariantLib.cs
- LayoutEngine.cs
- IInstanceTable.cs
- RuntimeConfig.cs
- SourceFileBuildProvider.cs
- RuleSettings.cs
- DataViewSetting.cs
- InputMethod.cs
- DesignTimeTemplateParser.cs
- ListSortDescription.cs
- DbTypeMap.cs
- EventWaitHandle.cs
- ObjectConverter.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- HelpEvent.cs
- SHA256.cs
- METAHEADER.cs
- XPathSelfQuery.cs
- PlatformCulture.cs
- Stopwatch.cs
- HorizontalAlignConverter.cs
- TextTreeNode.cs
- Errors.cs
- HandlerFactoryWrapper.cs
- TerminatorSinks.cs
- DelegatingTypeDescriptionProvider.cs
- SessionPageStatePersister.cs
- SqlNamer.cs
- ActivationServices.cs
- UpdatePanelControlTrigger.cs
- PriorityQueue.cs
- C14NUtil.cs
- TraceContext.cs
- EncryptedKey.cs
- XmlSchemaObject.cs
- CombinedGeometry.cs
- util.cs
- MaxMessageSizeStream.cs
- XmlSchemaAnyAttribute.cs
- SurrogateSelector.cs
- DataSetSchema.cs
- FaultFormatter.cs
- OptimizerPatterns.cs
- VisualBasicExpressionConverter.cs
- FormParameter.cs
- BamlResourceContent.cs
- CodeTypeReferenceExpression.cs
- PassportPrincipal.cs
- querybuilder.cs
- GcSettings.cs
- TreeNodeCollection.cs
- CheckBoxRenderer.cs
- ReachDocumentSequenceSerializer.cs
- NonParentingControl.cs