Quiero pasar una lista int (Lista) como una propiedad declarativa a un control de usuario de la web de esta manera:Pasando lista int como un parámetro para un control de usuario Web
<UC:MyControl runat="server" ModuleIds="1,2,3" />
que creó un TypeConverter para hacer esto :
public class IntListConverter : System.ComponentModel.TypeConverter
{
public override bool CanConvertFrom(
System.ComponentModel.ITypeDescriptorContext context,
Type sourceType)
{
if (sourceType == typeof(string)) return true;
return base.CanConvertFrom(context, sourceType);
}
public override object ConvertFrom(
System.ComponentModel.ITypeDescriptorContext context,
System.Globalization.CultureInfo culture, object value)
{
if (value is string)
{
string[] v = ((string)value).Split(
new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
List<int> list = new List<int>();
foreach (string s in vals)
{
list.Add(Convert.ToInt32(s));
}
return list
}
return base.ConvertFrom(context, culture, value);
}
public override bool CanConvertTo(ITypeDescriptorContext context,
Type destinationType)
{
if (destinationType == typeof(InstanceDescriptor)) return true;
return base.CanConvertTo(context, destinationType);
}
public override object ConvertTo(ITypeDescriptorContext context,
System.Globalization.CultureInfo culture, object value, Type destinationType)
{
if (destinationType == typeof(InstanceDescriptor) && value is List<int>)
{
List<int> list = (List<int>)value;
ConstructorInfo construcor = typeof(List<int>).GetConstructor(new Type[] { typeof(IEnumerable<int>) });
InstanceDescriptor id = new InstanceDescriptor(construcor, new object[] { list.ToArray() });
return id;
}
return base.ConvertTo(context, culture, value, destinationType);
}
}
Y luego añade el atributo de mi propiedad:
[TypeConverter(typeof(IntListConverter))]
public List<int> ModuleIds
{
get { ... }; set { ... };
}
pero me sale este error en tiempo de ejecución:
Unable to generate code for a value of type 'System.Collections.Generic.List'1[[System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]'. This error occurred while trying to generate the property value for ModuleIds.
Mi pregunta es similar a la encontrada here, pero la solución no resuelve mi problema:
Actualización: encontré una página que resolvió el primer problema. Actualicé el código anterior para mostrar mis correcciones. El código agregado es los métodos CanConvertTo
y ConvertTo
. Ahora me sale un error diferente .:
Object reference not set to an instance of an object.
Este error parece ser causado indirectamente por algo en el método ConvertTo
.
Seguramente no escribió IntListConverter en el nombre de clase y IntegerListConverter en el atributo, ¿o sí? – Alan
Ja, no ... Arreglaré eso. –
Gracias por hacer esta pregunta. Me enfrenté casi al mismo problema. –