StackTrace.cs 330 B

1234567891011121314151617181920
  1. namespace System.Diagnostics
  2. {
  3. partial class StackTrace
  4. {
  5. internal StackTrace (StackFrame[] frames)
  6. {
  7. throw new NotImplementedException ();
  8. }
  9. void InitializeForCurrentThread (int skipFrames, bool fNeedFileInfo)
  10. {
  11. }
  12. void InitializeForException (Exception e, int skipFrames, bool fNeedFileInfo)
  13. {
  14. }
  15. }
  16. }