1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
//------------------------------------------------------------------------------
// <copyright file="ObjectConverter.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*
* An object that can convert from one object type to another, potentially using a format
* string if the conversion is to a string.
*
* Copyright (c) 1999 Microsoft Corporation
*/
namespace System.Web.UI {
using System.Runtime.Serialization.Formatters;
using System.ComponentModel;
using System.Globalization;
using System;
using System.Security.Permissions;
//
/// <internalonly/>
/// <devdoc>
/// </devdoc>
[Obsolete("The recommended alternative is System.Convert and String.Format. http://go.microsoft.com/fwlink/?linkid=14202")]
public sealed class ObjectConverter {
internal static readonly char [] formatSeparator = new char[] { ','};
public ObjectConverter() { }
/// <internalonly/>
/// <devdoc>
/// </devdoc>
public static object ConvertValue(object value, Type toType, string formatString) {
// Workaround for now to handle inability of reflection to deal with Null.
if (value == null || Convert.IsDBNull(value)) {
return value;
}
Type fromType = value.GetType();
if (toType.IsAssignableFrom(fromType)) {
return value;
}
// for now, just hit the sweet spots.
if (typeof(string).IsAssignableFrom(fromType)) {
if (typeof(int).IsAssignableFrom(toType)) {
return Convert.ToInt32((string)value, CultureInfo.InvariantCulture);
}
else if (typeof(bool).IsAssignableFrom(toType)) {
return Convert.ToBoolean((string)value, CultureInfo.InvariantCulture);
}
else if (typeof(DateTime).IsAssignableFrom(toType)) {
return Convert.ToDateTime((string)value, CultureInfo.InvariantCulture);
}
else if (typeof(Decimal).IsAssignableFrom(toType)) {
TypeConverter tc = new DecimalConverter();
return tc.ConvertFromInvariantString((string)value);
}
else if (typeof(Double).IsAssignableFrom(toType)) {
return Convert.ToDouble((string)value, CultureInfo.InvariantCulture);
}
else if (typeof(Int16).IsAssignableFrom(toType)) {
return Convert.ToInt16((Int16)value, CultureInfo.InvariantCulture);
}
else {
throw new ArgumentException(
SR.GetString(SR.Cannot_convert_from_to, fromType.ToString(), toType.ToString()));
}
}
else if (typeof(string).IsAssignableFrom(toType)) {
if (typeof(int).IsAssignableFrom(fromType)) {
return ((int)value).ToString(formatString, CultureInfo.InvariantCulture);
}
else if (typeof(bool).IsAssignableFrom(fromType)) {
string [] tokens=null;
if (formatString != null) {
tokens = formatString.Split(formatSeparator);
if (tokens.Length != 2) {
tokens = null;
}
}
if ((bool)value) {
if (tokens != null) {
return tokens[0];
}
else {
return "true";
}
}
else {
if (tokens != null) {
return tokens[1];
}
else {
return "false";
}
}
}
else if (typeof(DateTime).IsAssignableFrom(fromType)) {
return((DateTime)value).ToString(formatString, CultureInfo.InvariantCulture);
}
else if (typeof(Decimal).IsAssignableFrom(fromType)) {
return ((Decimal)value).ToString(formatString, CultureInfo.InvariantCulture);
}
else if (typeof(Double).IsAssignableFrom(fromType)) {
return ((Double)value).ToString(formatString, CultureInfo.InvariantCulture);
}
else if (typeof(Single).IsAssignableFrom(fromType)) {
return ((Single)value).ToString(formatString, CultureInfo.InvariantCulture);
}
else if (typeof(Int16).IsAssignableFrom(fromType)) {
return ((Int16)value).ToString(formatString, CultureInfo.InvariantCulture);
}
else {
throw new ArgumentException(
SR.GetString(SR.Cannot_convert_from_to, fromType.ToString(), toType.ToString()));
}
}
else {
throw new ArgumentException(
SR.GetString(SR.Cannot_convert_from_to, fromType.ToString(), toType.ToString()));
}
}
/*
string t1;
int t2;
bool t3;
DateTime t4;
bool t5;
Currency t6;
string t7, t8, t9, t10, t11;
string t12;
void Test()
{
t1 = (string)ObjectConverter.ConvertValue("Should be a string", typeof(string), null);
t2 = (int)ObjectConverter.ConvertValue("32", typeof(int), null);
t3 = (bool)ObjectConverter.ConvertValue("true", typeof(bool), null);
t4 = (DateTime)ObjectConverter.ConvertValue("11/14/62", typeof(DateTime), null);
t5 = (bool)ObjectConverter.ConvertValue("false", typeof(bool), null);
t6 = (Currency)ObjectConverter.ConvertValue("$12.50", typeof(Currency), null);
t7 = (string)ObjectConverter.ConvertValue(32, typeof(string), "#");
t8 = (string)ObjectConverter.ConvertValue(true, typeof(string), "yes;no");
t9 = (string)ObjectConverter.ConvertValue(false, typeof(string), "yes;no");
t10 = (string)ObjectConverter.ConvertValue(DateTime.Now, typeof(string), "hh:mm");
t11 = (string)ObjectConverter.ConvertValue(new Currency(12), typeof(string), "C");
}
public static void Main(string[] args)
{
new ObjectConverter().Test();
}
*/
}
}
|