public static extern unsafe bool CreateImpl(
     bool initialState,
     AutoResetEventHandle *handle);
Exemple #2
0
 public static unsafe bool CreateImpl(
     bool initialState,
     AutoResetEventHandle *handle)
 {
     return(Create(initialState, out *handle));
 }