Commit a75538ee authored by Pope Kim's avatar Pope Kim Committed by mrbean-bremen
Browse files

fixed SvgAttrribute reflection for .net core. (i guess Equals() function is...

fixed SvgAttrribute reflection for .net core. (i guess Equals() function is called instead of Match() on this platform?)
parent 4439d56a
......@@ -30,6 +30,11 @@ namespace Svg
private string _name;
private string _namespace;
public override bool Equals(object obj)
{
return Match(obj);
}
/// <summary>
/// When overridden in a derived class, returns a value that indicates whether this instance equals a specified object.
/// </summary>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment