iTextSharp.text.pdf.PdfTextArray.ReplaceLast C# (CSharp) 메소드

ReplaceLast() 개인적인 메소드

private ReplaceLast ( Object obj ) : void
obj Object
리턴 void
        private void ReplaceLast(Object obj) {
            // deliberately throw the IndexOutOfBoundsException if we screw up.
            arrayList[arrayList.Count - 1] = obj;
        }
    }