System.Text.Tests.StringBuilderTests.Insert_UInt C# (CSharp) Method

Insert_UInt() private method

private Insert_UInt ( string original, int index, uint value, string expected ) : void
original string
index int
value uint
expected string
return void
        public static void Insert_UInt(string original, int index, uint value, string expected)
        {
            var builder = new StringBuilder(original);
            builder.Insert(index, value);
            Assert.Equal(expected, builder.ToString());
        }
StringBuilderTests