19 Haziran 2018 Salı

Unsafe Sınıfı

Giriş
Şu satırı dahil ederiz.
using System.Runtime.CompilerServices.Unsafe;
As metodu
Şöyle yaparız.
static bool AreSame<T1, T2>(ref T1 a, ref T2 b) 
    => Unsafe.AreSame(ref Unsafe.As<T1, T2>(ref a), ref b);

Hiç yorum yok:

Yorum Gönder