DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ GetAllLines()

TStringArray PluginFileHandler::GetAllLines ( )
inlineprivate

См. определение в файле PluginLocalHistoryBase.c строка 31

32 {
33 // replace \\n to new line
34 TStringArray console_history = new TStringArray;
35 for ( int i = 0; i < m_FileContent.Count(); i++)
36 {
37 string history_record = m_FileContent.Get(i);
38 history_record.Replace("\\n", "\n");
39 console_history.Insert( history_record );
40 }
41 return console_history;
42 }
array< string > TStringArray
Определения EnScript.c:685
proto int Replace(string sample, string replace)
Replace all occurrances of 'sample' in 'str' by 'replace'.

Перекрестные ссылки string::Replace().