求助!急急急 请帮我把这段c# 代码改成vb.net的

来源:百度知道 编辑:UC知道 时间:2024/05/09 16:21:12
public class TreeNode
{
private ArrayList mChilds = null;
private Attribute mAttribute;

/// <summary>
/// Inicializa uma nova inst钞cia de TreeNode
/// </summary>
/// <param name="attribute">Atributo ao qual o node est?ligado</param>
public TreeNode(Attribute attribute)
{
if (attribute.values != null)
{
mChilds = new ArrayList(attribute.values.Length);
for (int i = 0; i < attribute.values.Length; i++)
mChilds.Add(null);
}
else
{
mChilds = new ArrayList(1);
mChilds.Add(null);
}
mAttribute = attribute;
}

/// <summary>
/// Adiciona um TreeNode filho a este treenode no galho de nome indicicado pelo ValueName
/// </summary>
/// <param name="treeNode">TreeNode filho a ser adicionado</param>
/// <param name

/我来告诉你答案 给你连接
http://zhidao.baidu.com/question/24081832.html

这个很简单的
知道VB语法就能