Last active
October 28, 2017 03:05
-
-
Save NuarkNoir/844f64f75de10b1621424bd5a4d92959 to your computer and use it in GitHub Desktop.
Если нет библиотеки, то она достаётся из ресурсов
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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