ME1Explorer.Unreal.Classes.BioTlkFileSet.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)
        {
            if (talkFiles != null)
            {
                return talkFiles[selectedTLK].findDataById(strRefID, withFileName);
            }
            else
            {
                return "No Data";
            }
        }
    }