I would like to know the differences between these two ways of declaring variables.
Type 1
private string procedure_add = "";
private string procedure_update = "";
private string procedure_delete = "";
Type 2
private string procedure_add = "", procedure_update = "", procedure_delete = "";
Does this give the same effect?. Is the memory consumption the same?