Adf.Core.Panels.PanelItemExtensions.GetPropertyName C# (CSharp) Method

GetPropertyName() public static method

public static GetPropertyName ( this panelitem ) : string
panelitem this
return string
        public static string GetPropertyName(this PanelItem panelitem)
        {
            var type = panelitem.Member.ReflectedType.Name;

            return String.Format("{0}{1}", type, panelitem.Member.Name);
        }