Hello,
This morning was going through a book where i found a paragraph as stated below :
Each data field in a table is a strongly typed data member, fully compliant with .NET's Common Type System.
Does the above lines means " that data tables objects written in different languages can interact with each other "
Or is it something that i am missing and need to know.
Thanks in advance
Loading
EhteshamPosted May 28, 2012, 2:05 AM
Example
var n=10;
here variable "n" is strongly typed as once you assign value 10 to n you cannot change the type of variable during the execution of the program
Tuhin KumarPosted May 28, 2012, 2:08 AM