Ejemplo n.º 1
0
 /// <summary>
 /// Removes all data from specified ResX file
 /// </summary>
 private void ClearFile(ResXProjectItem target)
 {
     try {
         target.Load();
         target.Data.Clear();
         target.Flush();
         target.Unload();
     } catch (Exception) { }
 }