I am working on sharepoint server 2013. now i have the following column named "Date Reported", which have the following properties:-
- Display-Name =
Date Reported - Internal Name =
Date_x0020_Reported
now i wrote the following code inside my console APP :-
foreach (SPListItem item in testList.Items)
{
var test1 = item["Date_x0020_Reported"];
var test2 = item["Date Reported"];
and seems both variables Test1 & Test2 got the correct date value. which means i can reference the item field value either using the field display name Or the field internal name? is this the case? and if the answer is Yes then could this cause conflicts .. let say a field internal name equal another field display name ?
Thanks
