CopySid
[DllImport("Advapi32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool CopySid(
uint nDestinationSidLength,
IntPtr pDestinationSid,
IntPtr pSourceSid
);
Microsoft documentation: Link
Last updated