What are strongly typed string values?
What are strongly typed string values
Collapse
X
-
I guess you need to be more clear. C# is a strongly typed language, that is everything has to be specified. Conversion between one type to another is supported on if the conversion is valid.
Strongly type basically means: that the type known(at compile time) and is verifiable, like int,string or object. There is no ambiguity about the type. -
Comment