Looking in the Object Browser in Microsoft Visual Studio 2017, I can see that some assemblies have Properties
namespaces, including some assemblies that I have made myself. We can see this in Telerick's TelerickData
DLL as shown in the image below. None of these namespaces that I have seen to date have any contents publicly available, nor have any further information other than the name of the namespace (e.g. Namespace TelerickData.Properties
) and the name of the assembly that it is a member of (e.g. Member of TelerikData
)
Some assemblies do not display this namespace, such as some other Telerik DLLs or any of the framework DLLs.
What is the purpose of this namespace? Can I remove it, hide it or make it private, for my own C# DLL? Should I?