Please explain this command

path.Combine(Environment.CurrentDirectory,in_reportsdownloadpath,“Report-”+ in_taxid+“-”+in_year+month.ToString+ “.csv”)

  1. Here path is a variable of type array (I guess) which you have some value
  2. Combine is used to append the value to the path
  3. Environment.currentpath gives you the current working directory
  4. in_reportsdownloadpath this is a variable you have with some value and remaining all are strings
1 Like