iTextSharp.text.pdf.SequenceList.OtherProc C# (CSharp) Метод

OtherProc() приватный Метод

private OtherProc ( ) : void
Результат void
        private void OtherProc()
        {
            if (other.Equals("odd") || other.Equals("o")) {
                odd = true;
                even = false;
            }
            else if (other.Equals("even") || other.Equals("e")) {
                odd = false;
                even = true;
            }
        }