System.Diagnostics.ProcessModule.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString() { throw null; }
    }

Usage Example

Beispiel #1
0
        private static string GetSafeModuleName(ProcessModule m)
        {
            try
            {
                return m.FileName;
            }
            catch
            {

            }
            return m.ToString();
        }