M
Moreno Tonin
I'am creating a custom web control and I want that a property is an array of
class. how can I implement this?
I tried using:
public class myclass{
public string caption ="";
public myclass(){
}
}
public class obj: WebControl
{
private myclass _Items[] = null;
public myclass[] Items{
get{
return _Items;
}
set{
_Items = value.clone();
}
}
}
--
Moreno Tonin
e-mail: (e-mail address removed)
cell.: +393289026549
uff.: +39031525082
p. website: www.moredev.com
Datain srl
Microsoft Certified Partner
Telecom Business Service Provider
Progress Software Partner
via Lenticchia 16 22100 Como CO
www.datain.it ; www.datain.biz
class. how can I implement this?
I tried using:
public class myclass{
public string caption ="";
public myclass(){
}
}
public class obj: WebControl
{
private myclass _Items[] = null;
public myclass[] Items{
get{
return _Items;
}
set{
_Items = value.clone();
}
}
}
--
Moreno Tonin
e-mail: (e-mail address removed)
cell.: +393289026549
uff.: +39031525082
p. website: www.moredev.com
Datain srl
Microsoft Certified Partner
Telecom Business Service Provider
Progress Software Partner
via Lenticchia 16 22100 Como CO
www.datain.it ; www.datain.biz