Variables turned to @"

Hello guys,
im getting a problem when i run the process, it basically changes the value of the variable to @" even without having any activity to do that.

image
Can someone assist me?

Hi @Marcelo_de_Alcantara

Welcome back to the forums :slight_smile:

This is the locals panel right? (Whilst in debug mode)

String and some other variable types will appear like that whilst in debug mode. But when used they will not have the @.

To confirm this:

  • Try writing a log message
  • Check out the Immediate panel and type in ‘complemento_Link’ and press ‘Enter’.

Hopefully this helps :blush:

Cheers

Steve

Hi,

FYI, @ is special character serves as a verbatim identifier in C#. (In Locals panel etc. it uses C# expression even if project language is VB). Please check the following document in detail.

Regards,