Hello. I got issue from Compile log “The imported type `System.Xml.Linq.XElement’ is defined multiple times” on Unity3D
Version 4.2.0f4 and development env Visual studio 2012. Codes are like this.
using System.Linq;
using System.Xml;
using System.Xml.XPath;
using System.Xml.Linq;
using System;
using System.Text.RegularExpressions;
using System.IO;
public class XmlLoad : MonoBehaviour
{
static Dictionary<XmlOperator.XmlType, XElement> xmlDictionary
= new Dictionary<XmlOperator.XmlType, XElement>(); //<<<<–Here is location to occur error “Multiple define XElement …”
…
}
How to fix it? I need any involved solution. Thanks.