buenas noches compañeros.. tengo una duda... tengo un metodo en una clase de esta forma :
public class cliente_particular : cliente
{
private string cedula;
private string nombre;
private string apellido;
private string tarjeta_razon_social;
private string tarjeta_numero;
public cliente_particular(string direccion,
string dir_numero,
string telefono,
string cedula,
string nombre,
string apellido,
string tarjeta_razon_social,
string tarjeta_numero): base(direccion, dir_numero, telefono)
{
this.cedula = cedula;
this.nombre = nombre;
this.apellido = apellido;
this.tarjeta_razon_social = tarjeta_razon_social;
this.tarjeta_numero = tarjeta_numero;
}
public string get_cedula
{
get
{
return cedula;
}
set
{
cedula = value;
}
}
public string get_nombre
{
get
{
return nombre;
}
set
{
nombre = value;
}
}
public string get_apellido
{
get
{
return apellido;
}
set
{
apellido = value;
}
}
public string get_tarjeta_razon_social
{
get
{
return tarjeta_razon_social;
}
set
{
tarjeta_razon_social = value;
}
}
public string get_tarjeta_numero
{
get
{
return tarjeta_numero;
}
set
{
tarjeta_numero = value;
}
}
public override string documento_seguro()
{
return tarjeta_razon_social;
return tarjeta_numero;
}
}
}
metodo documento seguro.. este me tiene que retornar esos dos valores pero el segundo es inalcanzable me dice el programa.. no se q estoy haciendo mal. osea no se como hacer un solo metodo que me retorne dos valores quien me da una mano please..... gracias