![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
10/10/2008, 17:52
|
![Avatar de Peterpay](http://static.forosdelweb.com/customavatars/avatar194134_3.gif) | Colaborador | | Fecha de Ingreso: septiembre-2007 Ubicación: San Francisco, United States
Mensajes: 3.858
Antigüedad: 17 años, 5 meses Puntos: 87 | |
Respuesta: pasar parametros a dll mediante reflexion no, haces el error clasico del loop la variable privada nombrala no se sistema y la publica Sistema, si no haces eso tienes problemas con la recursion al intentar acceder la misma variable una y otra vez hasta el infinito o tu tamaño de stack
private string sistema;
public string Sistema
{
get{ return sistema;}
set {sistema=value;}
}
solo haz eso y se soluciona. |