This question is locked. New answers and comments are not allowed.
The following is a list of usings I found in a code file...
Asking JC to format the code did this ...
But Organize Using, however, did this ...
--
Stuart
| using UEAPL.Web.Support.Extensions; |
| using System; |
| using System.Collections.Generic; |
| using System.Linq; |
| using System.Web; |
| using System.Web.UI; |
| using System.Web.UI.WebControls; |
| using Telerik.Web; |
| using Telerik.Web.UI; |
| using System.Text; |
| using System.IO; |
| using UEAPL.Website.SessionClasses.Notifications; |
| using NPL = UEAPL.Notification.PresentationLayer.Implementation; |
| using NPr = UEAPL.Notification.PresentationLayer.EmailserviceProxy; |
| using UPr = UEAPL.Common.PresentationLayer.UserServiceProxy; |
| using UPl = UEAPL.Common.PresentationLayer.Implementation.User; |
| using UEAPL.Shared.SessionObjects; |
| using System.Data; |
| using Microsoft.Practices.EnterpriseLibrary.ExceptionHandling; |
| using UEAPL.Common.PresentationLayer.Implementation.Classification; |
| using System.Configuration; |
Asking JC to format the code did this ...
| using Microsoft.Practices.EnterpriseLibrary.ExceptionHandling; |
| using NPL = UEAPL.Notification.PresentationLayer.Implementation; |
| using NPr = UEAPL.Notification.PresentationLayer.EmailserviceProxy; |
| using System.Collections.Generic; |
| using System.Configuration; |
| using System.Data; |
| using System.IO; |
| using System.Linq; |
| using System.Text; |
| using System.Web.UI.WebControls; |
| using System.Web.UI; |
| using System.Web; |
| using System; |
| using Telerik.Web.UI; |
| using Telerik.Web; |
| using UEAPL.Common.PresentationLayer.Implementation.Classification; |
| using UEAPL.Shared.SessionObjects; |
| using UEAPL.Web.Support.Extensions; |
| using UEAPL.Website.SessionClasses.Notifications; |
| using UPl = UEAPL.Common.PresentationLayer.Implementation.User; |
| using UPr = UEAPL.Common.PresentationLayer.UserServiceProxy; |
But Organize Using, however, did this ...
| using Microsoft.Practices.EnterpriseLibrary.ExceptionHandling; |
| using System; |
| using System.Collections.Generic; |
| using System.Configuration; |
| using System.Data; |
| using System.Web.UI; |
| using Telerik.Web.UI; |
| using UEAPL.Common.PresentationLayer.Implementation.Classification; |
| using UEAPL.Shared.SessionObjects; |
| using UEAPL.Web.Support.Extensions; |
| using UEAPL.Website.SessionClasses.Notifications; |
| using NPL = UEAPL.Notification.PresentationLayer.Implementation; |
| using NPr = UEAPL.Notification.PresentationLayer.EmailserviceProxy; |
| using UPl = UEAPL.Common.PresentationLayer.Implementation.User; |
| using UPr = UEAPL.Common.PresentationLayer.UserServiceProxy; |
--
Stuart