public void InputFields(string[] fields) { if (!(focusInputable is InputElement)) { return; } InputElement inputElement = (InputElement)focusInputable; int rest = inputElement.RestLength(); if (fields.Length > rest) { return; } foreach (string sign in fields) { inputElement.InputVertex(sign); } if (fields.Length == rest) { NextFoucs(); } }