System.Tests.DelegateTests.AllPrimitivesMethod C# (CSharp) Method

AllPrimitivesMethod() private static method

private static AllPrimitivesMethod ( bool boolean, string str, char character, byte unsignedbyte, sbyte signedbyte, Int16 int16, UInt16 uint16, Int32 int32, UInt32 uint32, Int64 int64, UInt64 uint64, Single single, Double dbl ) : string
boolean bool
str string
character char
unsignedbyte byte
signedbyte sbyte
int16 Int16
uint16 UInt16
int32 Int32
uint32 UInt32
int64 Int64
uint64 UInt64
single Single
dbl Double
return string
        private static string AllPrimitivesMethod(
            bool boolean,
            string str,
            char character,
            byte unsignedbyte,
            sbyte signedbyte,
            Int16 int16,
            UInt16 uint16,
            Int32 int32,
            UInt32 uint32,
            Int64 int64,
            UInt64 uint64,
            Single single,
            Double dbl)
        {
            return FormattableString.Invariant($"{boolean}, {str}, {character}, {unsignedbyte}, {signedbyte}, {int16}, {uint16}, {int32}, {uint32}, {int64}, {uint64}, {single}, {dbl}");
        }
DelegateTests