Artemis.Utilities.DataReaders.DllManager.PlaceRazerDll C# (CSharp) Method

PlaceRazerDll() public static method

public static PlaceRazerDll ( string path ) : void
path string
return void
        public static void PlaceRazerDll(string path)
        {
            try
            {
                File.WriteAllBytes(path + @"\RzChromaSDK64.dll", Resources.RzChromaSDK64);
                Logger.Debug("Successfully placed Razer DLL in {0}", path);
            }
            catch (Exception e)
            {
                Logger.Error(e, "Couldn't place Razer DLL in {0}", path);
            }
        }