[System] Process.WaitForExit now triggers event Exited.
[mono.git] / mcs / class / corlib / ReferenceSources / JitHelpers.cs
1
2 namespace System.Runtime.CompilerServices {
3
4         [FriendAccessAllowed]
5         internal static class JitHelpers
6         {
7                 static internal T UnsafeCast<T>(Object o) where T : class
8                 {
9                         return (T)o;
10                 }
11         }
12 }