CreateFromFile() public static method

public static CreateFromFile ( string file ) : XMLAssembly
file string
return XMLAssembly
 public MasterAssembly(string path)
     : base(path)
 {
     masterinfo = XMLAssembly.CreateFromFile(path);
     if (masterinfo == null)
     {
         throw new ArgumentException("Error loading masterinfo from " + path);
     }
     attributes = MasterUtils.GetAttributes(masterinfo.attributes);
 }