I like to do
using System.Web.UI.WebControls;
using Telerik.Web.UI;
at the top of each C# module. But the Telerik.Web.UI.Orientation conflicts with System.Web.UI.WebControls.Orientation so that I must use the full name for Orientation. I recomend changing Orientation to something like rcOrientation.
error CS0104: 'Orientation' is an ambiguous reference between 'System.Web.UI.WebControls.Orientation' and 'Telerik.Web.UI.Orientation'
ALSO ... I use using Resources; at the top of each module so I can just specify Resource.my_resource for my strings (instead of Resources.Resource.my_resource). But there is another name conflict in Prometheus with Telerik.Web.UI.Resource
error CS0104: 'Resource' is an ambiguous reference between 'Resources.Resource' and 'Telerik.Web.UI.Resource'
I recomend change Resource to something else so it does not conflict.
Thanks,
Jay
using System.Web.UI.WebControls;
using Telerik.Web.UI;
at the top of each C# module. But the Telerik.Web.UI.Orientation conflicts with System.Web.UI.WebControls.Orientation so that I must use the full name for Orientation. I recomend changing Orientation to something like rcOrientation.
error CS0104: 'Orientation' is an ambiguous reference between 'System.Web.UI.WebControls.Orientation' and 'Telerik.Web.UI.Orientation'
ALSO ... I use using Resources; at the top of each module so I can just specify Resource.my_resource for my strings (instead of Resources.Resource.my_resource). But there is another name conflict in Prometheus with Telerik.Web.UI.Resource
error CS0104: 'Resource' is an ambiguous reference between 'Resources.Resource' and 'Telerik.Web.UI.Resource'
I recomend change Resource to something else so it does not conflict.
Thanks,
Jay
