Hola, en el siguiente codigo intento hacer un wirte de la siguiente manera:
Código C#:
Ver originalResponse.Write("df" + objBank[0].city);
incluso si hago un Response.write("Hola")
no me lo muestra, es decir no da error al momento de llamar al metodo pero no imprime esa linea, y buscando en el codigo marca que no lo muestra por la siguiente razon:
Unreachable Code Detected
Eso es lo que marca en el write :(
Alguien sabe porque?
Código C#:
Ver original//Metodo
public List<BankList> getSAP(String search)
{
string param = "";
param = search.ToString();
try
{
//RfcDestination prd = RfcDestinationManager.GetDestination("IDES");
BankList objBankList = new BankList();
List<BankList> objBank = new List<BankList>();
RfcRepository repo = prd.Repository;
IRfcFunction companyBapi = repo.CreateFunction("BAPI_BANK_GETLIST");
companyBapi.SetValue("BANK_CTRY", param);
companyBapi.SetValue("MAX_ROWS", 2);
companyBapi.Invoke(prd);
List<IRfcStructure> irc = new List<IRfcStructure>();
IRfcTable detail = companyBapi["BANK_LIST"].GetTable();
List<string> cnt = new List<string>();
foreach (IRfcStructure ir in detail)
{
objBank.Add(new MyBackendConfig().Insert(ir));
}
repo.ClearTableMetadata();
return objBank;
Response.Write("df" + objBank[0].city);
}
catch (Exception ex)
{
return null;
}
}