public override void Leer(StreamReader lector) { string[] parametros; try { parametros = MA.Leer(lector); } catch (Exception e) { throw new Exception(Mensajes.ErrorAlLeerParametro(Definicion.Nombre, e)); } EstablecerValor(parametros); }
public override void Leer(StreamReader lector) { string[] parametros; try { parametros = MA.Leer(lector); } catch (Exception e) { throw new Exception(Mensajes.ErrorAlLeerParametro(Definicion.Nombre, e)); } if (parametros.Length != 1) { throw new Exception(Mensajes.CantidadDeParametrosNoCoincidenConDefinicion); } EstablecerValor(parametros[0]); }