HermaFx.Cryptography.ASN1.this C# (CSharp) 메소드

this() 공개 메소드

public this ( int index ) : ASN1
index int
리턴 ASN1
        public ASN1 this[int index]
        {
            get
            {
                try
                {
                    if ((elist == null) || (index >= elist.Count))
                        return null;
                    return (ASN1)elist[index];
                }
                catch (ArgumentOutOfRangeException)
                {
                    return null;
                }
            }
        }