iTextSharp.text.pdf.hyphenation.CharVector.this C# (CSharp) 메소드

this() 공개 메소드

public this ( int index ) : char
index int
리턴 char
		public char this[int index] {
			get {
				return array[index];
			}

			set {
				array[index] = value;
			}
		}