Working with Resharper’s External Annotation XML Files
Resharper 4.0 has external annotation XML files that you can create to give Resharper more information about your code. For example, you can tell Resharper that a particular method does not accept a null argument. For example, the following method does not accept a null argument: using System; namespace Utility { public static class Text { public static int GetLength(String text) { if (text == null) throw new ArgumentNullException(“text”); return text.Length; } } } An external annotation file can be created to inform Resharper … Continue reading Working with Resharper’s External Annotation XML Files