AtelierElieScripter.DialogueChoices.DialogueChoicesBlock.LoadTextFileSmallerBlock C# (CSharp) Метод

LoadTextFileSmallerBlock() защищенный Метод

protected LoadTextFileSmallerBlock ( StringReader blockStream, int textBlockNo ) : void
blockStream System.IO.StringReader
textBlockNo int
Результат void
        protected override void LoadTextFileSmallerBlock(StringReader blockStream, int? textBlockNo)
        {
            if (textBlockNo != null)
            {
                try
                {
                    choicesBlock[(int)textBlockNo].LoadTextFileBlock(blockStream);
                }
                catch (KeyNotFoundException)
                {
                    //UNDONE: File Load Error catching
                }
            }
        }