AutoMapper.UnitTests.Constructors.When_mapping_to_an_object_with_a_constructor_with_string_optional_arguments.DestinationFoo.DestinationFoo C# (CSharp) Méthode

DestinationFoo() public méthode

public DestinationFoo ( string a = "a", string b = "b", int c = 3 ) : System
a string
b string
c int
Résultat System
            public DestinationFoo(string a = "a",string b="b", int c = 3)
            {
                _a = a;
                _b = b;
                _c = c;
            }
        }
When_mapping_to_an_object_with_a_constructor_with_string_optional_arguments.DestinationFoo