First off, I'm not a developer so excuse the terminology that is, most likely, completely off.
I'll try and describe my issue in the clearest possible way with pictures to try and make up for that.
I'm using a tool called Data Synchronization Studio to migrate data from Microsoft Dynamics CRM 2011 to Microsoft Dynamics CRM 2016.
I have some code in place (written by a developer in another country) to perform a specific task.
The code references a field in the source system, the field happens to be called 'from'. Now I'm not entirely sure what to name it, but by any chance is 'from' also some kind of function?
In the image below string[] NewToValues = DataSchemaTypeConverter.ConvertTo<string[]>(this.to);
Notice how the .to is black.
However if I now change it to reference the Field called 'from' in the source system notice how the from is now blue (as if it's now some kind of function):
I'm getting an error when building the 'from' version of the code but not the 'to' version. I think this stems from the from. I need this to be the same as the to (i.e. black and not whatever the blue is). Is there anyway I can do this?