| 1234567891011121314151617181920 |
- namespace System.Diagnostics
- {
- partial class StackTrace
- {
- internal StackTrace (StackFrame[] frames)
- {
- throw new NotImplementedException ();
- }
- void InitializeForCurrentThread (int skipFrames, bool fNeedFileInfo)
- {
- }
-
- void InitializeForException (Exception e, int skipFrames, bool fNeedFileInfo)
- {
- }
- }
- }
|