Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

309
Visualizações
How to get variable name in catch block?

Here I have multiple string variables assigned but I want to catch the error at which variable & its name.

try
{
    sSrNo = Convert.ToString(valueArrayCustomerDetails[row, 1]);
    sNotice_No = (string)valueArrayCustomerDetails[row, 2];
    dt_notice_date = Convert.ToDateTime(valueArrayCustomerDetails[row, 3]);
    sAgreement_No = Convert.ToString(valueArrayCustomerDetails[row, 4]);
    sBorrower = (string)valueArrayCustomerDetails[row, 5];
}
catch (Exception ex)
{
    MessageBox.Show(ex.ToString() + "\n Error At :- Row-" + row + " Column-"); // here i want variable name at which error occurs
    throw;
}
over 4 years ago · Santiago Trujillo
3 Respostas
Responde à pergunta

0

Well, you have to use multiple try-catch if you want that information:

try
{
    sSrNo = Convert.ToString(valueArrayCustomerDetails[row, 1]);
}
catch (Exception ex)
{
    MessageBox.Show(ex.ToString() + "\n Error At :- Row-" + row + " 1"); 
    throw;
} 

try
{
    sNotice_No = (string)valueArrayCustomerDetails[row, 2];
}
catch (Exception ex)
{
    MessageBox.Show(ex.ToString() + "\n Error At :- Row-" + row + " 2"); 
    throw;
}

// ...

Another option is to create a helper method like this:

public static class Utils
{
    public static T TryDo<T>(Func<T> returnMethod, Action<Exception> exceptionAction = null, bool throwOnException = true, T fallbackValue = default(T))
    {
        try
        {
            return returnMethod();
        }catch(Exception ex)
        {
            exceptionAction(ex);
            if(throwOnException)
            {
                throw;
            }
        }
        
        return fallbackValue;
    }
}

Now you can use this concise and readable code:

sSrNo = Utils.TryDo(() => Convert.ToString(valueArrayCustomerDetails[row, 1]), ex => MessageBox.Show(GetMessage(ex, row, 1)));
sNotice_No = Utils.TryDo(() => Convert.ToString(valueArrayCustomerDetails[row, 2]), ex => MessageBox.Show(GetMessage(ex, row, 2)));
dt_notice_date = Utils.TryDo(() => Convert.ToDateTime(valueArrayCustomerDetails[row, 3]), ex => MessageBox.Show(GetMessage(ex, row, 3)));
sAgreement_No = Utils.TryDo(() => Convert.ToString(valueArrayCustomerDetails[row, 4]), ex => MessageBox.Show(GetMessage(ex, row, 4)));
sBorrower = Utils.TryDo(() => Convert.ToString(valueArrayCustomerDetails[row, 5]), ex => MessageBox.Show(GetMessage(ex, row, 5)));

// local method
string GetMessage(Exception ex, int row, int col) 
    => $"{ex.ToString()} Error At :- Row-{row} Column-{col}";
over 4 years ago · Santiago Trujillo Relatório

0

string index="1";
try
{
    sSrNo = Convert.ToString(valueArrayCustomerDetails[row, 1]);
index="2";
sNotice_No = (string)valueArrayCustomerDetails[row, 2];
index="3";
dt_notice_date = 
Convert.ToDateTime(valueArrayCustomerDetails[row, 3]);
index="4";
sAgreement_No = 
Convert.ToString(valueArrayCustomerDetails[row, 4]);
index="5";
sBorrower = (string)valueArrayCustomerDetails[row, 5];
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString() + "\n Error At :- Row-" + row + " 
Column-"+index); // here i want variable name at which error occurs
throw;
}
over 4 years ago · Santiago Trujillo Relatório

0

Try using this:

It will give the line number at which the exception is thrown thus getting the variable.

catch(Exception ex)
{
var LineNumber = new StackTrace(ex, true).GetFrame(0).GetFileLineNumber();

MessageBox.Show(ex.StackTrace + "\n Error at :- Row-" + LineNumber);
}

ex.StackTrace gives detailed error message.

over 4 years ago · Santiago Trujillo Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda