Issue Details (XML | Word | Printable)

Key: BOO-1033
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Major Major
Assignee: Rodrigo B. de Oliveira
Reporter: Rodrigo B. de Oliveira
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Boo

AmbiguousMatchException on overloaded indexer

Created: 28/May/08 02:19 PM   Updated: 22/Jan/09 09:22 AM   Resolved: 28/May/08 02:47 PM
Return to search
Component/s: None
Affects Version/s: 0.8.2, 0.9
Fix Version/s: 0.9

Time Tracking:
Not Specified


 Description  « Hide
"""
Hello
"""
import System.Xml

doc = XmlDocument()
	
data = """
<identity>
<avatar>
<name>Hello</name>
</avatar>
</identity>
"""

doc.LoadXml(data)

identitiesList = doc.GetElementsByTagName("identity")
for n as duck in identitiesList:
	print n["avatar"]["name"].InnerText


There are no comments yet on this issue.