protected
Telerik.Web.UI.RadTreeView TopicsTree;
I need to store checked nodes for a RadTreeView into an arraylist. But when I do that like below:
ArrayList
checkedTopics = TopicsTree.CheckedNodes;
I get the error 'Cannot implicitly convert type 'System.Collections.Generic.IList<Telerik.Web.UI.RadTreeNode>' to 'System.Collections.ArrayList'. An explicit conversion exists (are you missing a cast?)'.
Please help