can anyone help me out in converting the below code to vb.net
case "organizational Unit":
tmpNode = new TreeNode((strin g)child.Propert ies["name"].Value,(int)AdI mages.Ou,(int)A dImages.OpenCon tainer);
tmpItem = new ListViewItem(ne w string[] {
(string)child.P roperties["name"].Value,
child.SchemaCla ssName,
(string)child.P roperties["descriptio n"].Value
},(int)AdImages .Ou);
case "organizational Unit":
tmpNode = new TreeNode((strin g)child.Propert ies["name"].Value,(int)AdI mages.Ou,(int)A dImages.OpenCon tainer);
tmpItem = new ListViewItem(ne w string[] {
(string)child.P roperties["name"].Value,
child.SchemaCla ssName,
(string)child.P roperties["descriptio n"].Value
},(int)AdImages .Ou);
Comment