Example #1
0
        private void ReleaseUnmanagedResources()
        {
            var native = _native;

            Native.fido_cbor_info_free(&native);
            _native = null;
        }
Example #2
0
 internal FidoCborInfo()
 {
     _native = Native.fido_cbor_info_new();
     if (_native == null)
     {
         throw new OutOfMemoryException();
     }
 }