private void HandleModelFunctionElement(XmlReader reader) { ModelFunction modelFunction = new ModelFunction(this); modelFunction.Parse(reader); this.Functions.Add((Function)modelFunction); }
private void HandleModelFunctionElement(XmlReader reader) { DebugCheck.NotNull(reader); var function = new ModelFunction(this); function.Parse(reader); Functions.Add(function); }