This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<xs:schema id="JetBrains.ExternalAnnotations" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> | |
<xs:annotation> | |
<xs:documentation> | |
<![CDATA[ | |
Usage: You only need to add the following to the assembly element: | |
<assembly name="Assembly.Name" | |
xsi:noNamespaceSchemaLocation="http://jetbrains.com/schema/JetBrains.ExternalAnnotations.xsd" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
]]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace ScanSum | |
{ | |
using System; | |
using System.Globalization; | |
using System.IO; | |
using TextScanner; | |
internal class ScanSum | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace UnitTestHelpers | |
{ | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
/// <summary> | |
/// Provides random test data | |
/// </summary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Helpers | |
{ | |
using System; | |
/// <summary> | |
/// A static class of extension methods for <see cref="Array"/>. | |
/// </summary> | |
public static class ArrayHelpers | |
{ | |
/// <summary> |
NewerOlder