Here are the examples of the csharp api class Nikse.SubtitleEdit.Core.SubtitleFormats.F4Text.LoadF4TextSubtitle(Subtitle, string) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1 Example
0
1. Example
View licensepublic override void LoadSubtitle(Subtitle subtitle, List<string> lines, string fileName) { _errorCount = 0; var sb = new StringBuilder(); foreach (string line in lines) sb.AppendLine(line); string text = sb.ToString(); if (text.Contains("{\\rtf") || text.Contains("<transcript>")) return; LoadF4TextSubtitle(subtitle, text); }