what do you mean by that?you could also use the type of the dropped item for that
string name = item.ResolveName( );
string name = item.ResolveName( viewerMobile );
that you could use item.GetType() to get the classname of the item
typeof(item).Name// class name, no namespace
typeof(item).FullName// namespace and class name
typeof(item).Namespace// namespace, no class name
item.GetType().Name//same as Name above.
item.GetType().FullName//same as FullName above.
We use essential cookies to make this site work, and optional cookies to enhance your experience.