What can be the possible issues if the DataTable name is the same with one of its column name?
When can we be likely to face those issues?
e.g
DataTable Code has a column name Code.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Due to the hierarchical structure of DataTable there should be no issue.
Because each column is stored in a separate object and each of these objects are stored in a collection within the datatable.
The only issue could be that it confuses the people who are reading your code.