I have an xml and it has nodes with i:nil="true" in it. What does that mean?
For example:
<FirstName i:nil="true" />
Does that mean something different than:
<FirstName />
If so, what is the difference?
|
|
|
|
|
|
|
This means FirstName is null
This means FirstName = ""
Assumption made on FirstName is of string type. |
||||||||
|
|
|
Maybe |
||
|
|
|
|
nil is an attribute, defined in the It's similar to this, just with different names and values:
Here, What this means depends on the application reading the xml document. If I were to venture a guess, I'd say that this looks like part of a xml document defining some kind of schema, and that the FirstName field can have a NULL or |
||
|
|