Set() публичный Метод

public Set ( DXFStructure dxf ) : void
dxf DXFConvert.DXFStructure
Результат void
Пример #1
0
 private void LoadDXF(string path)
 {
     try
     {
         DiskFile iLoader = new DiskFile(path);
         DXFConvert.DXFStructure dxfStructure = new DXFConvert.DXFStructure(iLoader);
         dxfStructure.Load();
         iLoader.Dispose();
         GoView.Set(dxfStructure);
         Debug.Log("OK:" + path);
     }
     catch (System.Exception ex)
     {
         Debug.Log("Error:" + path);
         Debug.LogError(ex.ToString());
     }
 }