Exemplo n.º 1
0
        public static string GetFilePath(
            this DotNetProcess process)
        {
            if (process == null)
            {
                throw new ArgumentNullException(nameof(process));
            }

            var result = process.GetProcessMainModule().FileName;

            return(result);
        }
Exemplo n.º 2
0
        public static string GetProductVersion(
            this DotNetProcess process)
        {
            if (process == null)
            {
                throw new ArgumentNullException(nameof(process));
            }

            var result = process.GetProcessMainModule().FileVersionInfo.ProductVersion;

            return(result);
        }