示例#1
0
 public EventedProfileContext(
     ProfileContext profileContext,
     string name,
     TimeUnit timeUnit)
     : base(profileContext, name, timeUnit)
 {
 }
示例#2
0
        protected SubProfileContextBase(ProfileContext profileContext, string name, TimeUnit timeUnit)
        {
            this.TickFactor = timeUnit.GetTickFactor();

            this.ProfileContext = profileContext;
            this.Name           = name;
            this.TimeUnit       = timeUnit;
        }