I have a class created in some namespace, like SomeNameSpace.SubNameSpace.StaticClassName
Here is a code snippet from other code file where I want to use this class many more times, so I created a property in the code file like this
//Just to provide an Alias for long name "SomeNameSpace.SubNameSpace.StaticClassName.PropertyName"
public StaticClassName ServerProxyAlias
{
get
{
return SomeNameSpace.SubNameSpace.Instance.PropertyName;
}
set
{
SomeNameSpace.SubNameSpace.Instance.PropertyName = value;
}
}
Is there any problem in doing like this ?


using SomeNameSpace.SubNameSpace) at the top of any files that need the property (and that are outside of SomeNameSpace.SubNameSpace) and then useStaticClassName.PropertyName? – Brian Jul 18 '12 at 13:55