BF2Statistics.MedalData.ConditionValue.ToTree C# (CSharp) Method

ToTree() public method

Covnerts the conditions into a TreeNode
public ToTree ( ) : TreeNode
return System.Windows.Forms.TreeNode
        public override TreeNode ToTree()
        {
            TreeNode Me = new TreeNode( String.Format("{0:N0}", Value) );
            Me.Tag = this;
            return Me;
        }