Ass2Srt.AssAnalyzerForSrt.DialogueProcessor C# (CSharp) 메소드

DialogueProcessor() 개인적인 메소드

private DialogueProcessor ( string strDialogue, int subCount ) : List
strDialogue string
subCount int
리턴 List
        private List<string> DialogueProcessor(string strDialogue, int subCount)
        {
            List<string> lDialogueProcessed = new List<string>();
            List<string> lDialogueGot = new List<string>();
            //lDialogueProcessed.Add(GetTime(strDialogue));
            lDialogueGot = GetDialogue(strDialogue);
            if (lDialogueGot.Count == 0)
            {

            }

            else
            {
                lDialogueProcessed.Add(subCount.ToString());
                lDialogueProcessed.AddRange(GetDialogue(strDialogue));
                lDialogueProcessed.Add("");
            }

            return lDialogueProcessed;
        }