Hi there
I am getting a StackOverflow Error in this code:
EDIT
[XmlAttribute("ID")]
public string ID { get; set; }
EDIT2
public ParameterEntity this[string szID]
{
get
{
//Finds the parameter entity with the ID passed in.
return rParameters.Find(
delegate(ParameterEntity oParameterEntity)
{
return oParameterEntity.ID.Equals(szID, StringComparison.OrdinalIgnoreCase);
});
}
}
Can you guys please advise?
I might just have to use a simple manual looping.
Thanks -Oliver