ME1Explorer.TalkFiles.findDataById C# (CSharp) Method

findDataById() public method

public findDataById ( int strRefID, bool withFileName = false ) : string
strRefID int
withFileName bool
return string
        public string findDataById(int strRefID, bool withFileName = false)
        {
            string s = "No Data";
            foreach (TalkFile tlk in tlkList)
            {
                s = tlk.findDataById(strRefID, withFileName);
                if (s != "No Data")
                {
                    return s;
                }
            }
            return s;
        }
    }