예제 #1
0
 public ProfileSnippetResult(string name, ProfileSnippetResult parent, TimeSpan elapsedTime)
 {
     this.name        = name;
     this.parent      = parent;
     this.children    = null;
     this.elapsedTime = elapsedTime;
 }
예제 #2
0
            public void AddChild(ProfileSnippetResult child)
            {
                if (children == null)
                {
                    children = new FastList <ProfileSnippetResult>();
                }

                children.Add(child);
            }