HermaFx.Cryptography.ASN1.this C# (CSharp) Method

this() public method

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