示例#1
0
 public ProfilingEventPush(int threadId, CallerInfo callerInfo, long ticks)
     : base(ticks)
 {
     ThreadId   = threadId;
     CallerInfo = callerInfo;
 }
示例#2
0
 public static ProfilingEventPush Push(int threadId, CallerInfo callerInfo, long startTicks)
 {
     return(new ProfilingEventPush(threadId, callerInfo, startTicks));
 }