コード例 #1
0
ファイル: IPCManager.cs プロジェクト: Fragtality/PilotsDeck
        public bool WriteLvar(string name, double value)
        {
            bool result = false;

            try
            {
                FSUIPCConnection.WriteLVar(name, value);
                result = true;
            }
            catch
            {
                Log.Logger.Error($"IPCManager: Exception while writing LVar <{name}:{value}> to FSUIPC");
            }

            return(result);
        }