OpenSSL.Core.Native.ASN1_STRING_cmp C# (CSharp) Method

ASN1_STRING_cmp() private method

private ASN1_STRING_cmp ( IntPtr a, IntPtr b ) : int
a System.IntPtr
b System.IntPtr
return int
        public static extern int ASN1_STRING_cmp(IntPtr a, IntPtr b);

Usage Example

 /// <summary>
 /// Returns ASN1_STRING_cmp()
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 public int CompareTo(Asn1String other)
 {
     return(Native.ASN1_STRING_cmp(ptr, other.Handle));
 }
Native