概要
使用例
using NUnit.Framework; using System.Linq; using System.Text; public static class Example { [Test] public static void CheckDuplicateAddress() { var list = AddressableUtils .GetDuplicateAddress() .ToArray() ; var isExist = list.Any(); if ( !isExist ) return; var builder = new StringBuilder(); foreach ( var n in list ) { builder.AppendLine( n ); } Assert.Fail( builder.ToString() ); } }