public static unsafe bool CreateImpl(
     bool initialState,
     ManualResetEventHandle *handle)
 {
     return(Create(initialState, out *handle));
 }
 public static extern unsafe bool CreateImpl(
     bool initialState,
     ManualResetEventHandle *handle);