MSTParser.ParseForestItem.CopyValues C# (CSharp) Method

CopyValues() public method

public CopyValues ( ParseForestItem p ) : void
p ParseForestItem
return void
        public void CopyValues(ParseForestItem p)
        {
            p.S = S;
            p.R = R;
            p.T = T;
            p.Dir = Dir;
            p.Comp = Comp;
            p.Prob = Prob;
            p.FV = FV;
            p.Length = Length;
            p.Left = Left;
            p.Right = Right;
            p.Type = Type;
        }