C convict29 Пользователь Регистрация 10.07.2014 Сообщения 114 Благодарностей 3 Баллы 18 31.05.2015 #1 Hey is there any fast way to bulk empty or set blank some of my variables(20 of them) ? Im not a coder but i guess this might be possible with a C#. Thanks in advance!
Hey is there any fast way to bulk empty or set blank some of my variables(20 of them) ? Im not a coder but i guess this might be possible with a C#. Thanks in advance!
rostonix Известная личность Регистрация 23.12.2011 Сообщения 29 067 Благодарностей 5 715 Баллы 113 01.06.2015 #2 project.Variables["varname1"].Value = String.Empty; project.Variables["varname2"].Value = String.Empty; project.Variables["varname3"].Value = String.Empty;
project.Variables["varname1"].Value = String.Empty; project.Variables["varname2"].Value = String.Empty; project.Variables["varname3"].Value = String.Empty;
C convict29 Пользователь Регистрация 10.07.2014 Сообщения 114 Благодарностей 3 Баллы 18 01.06.2015 #3 Thank you so much