CSPspEmu.Hle.DelegateInfo.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            try
            {
                return String.Format(
                    "{0}: PC=0x{3:X}, RA=0x{4:X} => '{5}' : {1}::{2}",
                    CallIndex, ModuleImportName, FunctionEntry.Name, PC, RA, (Thread != null) ? Thread.Name : "-");
            }
            catch (Exception Exception)
            {
                return String.Format("Invalid DelegateInfo : " + Exception);
            }
            //return this.ToStringDefault();
        }
DelegateInfo