System.Tests.StringTests.IsNullOrEmpty C# (CSharp) 메소드

IsNullOrEmpty() 개인적인 메소드

private IsNullOrEmpty ( string value, bool expected ) : void
value string
expected bool
리턴 void
        public static void IsNullOrEmpty(string value, bool expected)
        {
            Assert.Equal(expected, string.IsNullOrEmpty(value));
        }
StringTests