Skip to content

Instantly share code, notes, and snippets.

@NuarkNoir
Last active October 28, 2017 03:05
Show Gist options
  • Save NuarkNoir/844f64f75de10b1621424bd5a4d92959 to your computer and use it in GitHub Desktop.
Save NuarkNoir/844f64f75de10b1621424bd5a4d92959 to your computer and use it in GitHub Desktop.
Если нет библиотеки, то она достаётся из ресурсов
if (!File.Exists("Newtonsoft.Json.dll"))
{
byte[] resf;
resf = Properties.Resources.Newtonsoft_Json;
File.WriteAllBytes("Newtonsoft.Json.dll", resf);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment