Exemple #1
0
        public void EnvironmentVariableSetEnvironmentVariable()
        {
            tlog.Debug(tag, $"EnvironmentVariableSetEnvironmentVariable START");

            EnvironmentVariable.SetEnvironmentVariable("path", Tizen.Applications.Application.Current.DirectoryInfo.Resource);
            tlog.Debug(tag, "path : " + EnvironmentVariable.GetEnvironmentVariable("path"));

            tlog.Debug(tag, $"EnvironmentVariableSetEnvironmentVariable END (OK)");
        }
Exemple #2
0
        public void EnvironmentVariableGetEnvironmentVariable()
        {
            tlog.Debug(tag, $"EnvironmentVariableGetEnvironmentVariable START");

            var testingTarget = EnvironmentVariable.GetEnvironmentVariable("path");

            tlog.Debug(tag, "path : " + testingTarget);

            tlog.Debug(tag, $"EnvironmentVariableGetEnvironmentVariable END (OK)");
        }