protected virtual string GetDescriptionForShortString(IShortStringScope scope)
		{
			return "string"+"["+scope.Length+"]";
		}
 protected override string GetDescriptionForShortString(IShortStringScope scope)
 {
     if (scope.Length != null)
         return "String * " + scope.Length.ToString();
     return scope.Name;
 }