How to write below logic in Generic way?

2019-05-15 03:40发布

I have a model like below

public sealed class Person
{
        public string MobileNo { get; set; }
        public string Firstname { get; set; }
        public string Lastname { get; set; }
}

In my implmentation class, I have a method which takes an IEnumerable as a parameter

public string PersonList(string listName, IEnumerable<Person> persons)
{
   dictionary.Add("name", new String[1] { listname }); 
   dictionary.Add("list", persons.ToArray());

    PrivateMethod("personList", dictionary);
}

I have another private method

private string PrivateMethod(string value, Dictionary<string, object[]> parameters)
{
    foreach (KeyValuePair<string, object[]> kvp in parameters)
    {
           Person[] persons = kvp.Value.Cast<Person>().ToArray();

           [...]
    }

[...]
}

I want to make this above method reusable, and don't want to put "Person" model tightly-coupled.

Can I use dynamic ?

ContactList(string listName, IEnumerable<dynamic> persons)

And within the private method

dynamic[] persons = kvp.Value.Cast<How to pass model here>().ToArray();

Solution:

This will work, great.

 dynamic[] persons = kvp.Value.Cast<dynamic>().ToArray();

Thanks to usr & Rune FS

2条回答
狗以群分
2楼-- · 2019-05-15 03:49

You could make the PrivateMethod generic:

private string PrivateMethod<T>(string value, Dictionary<string, object[]> parameters)
{
    foreach (KeyValuePair<string, object[]> kvp in parameters)
    {
           T[] items = kvp.Value.Cast<T>().ToArray();
           [...]
    }

    [...]
}
查看更多
beautiful°
3楼-- · 2019-05-15 03:58

Have you tried using "Interfaces" in c#? you can cast any object to any type as long as they are all derived to the same type of interface.

interface IPerson
{
    string MobileNo { get; set; }
    string Name { get; set; }
    string LastName { get; set; }
}

class Person : IPerson
{
    public string MobileNo { get; set; }
    public string Name { get; set; }
    public string LastName { get; set; }
}

class execute
{
    private Dictionary<string, object[]> dictionary = new Dictionary<string,object[]>();

    public void run()
    {
        List<IPerson> persons = new List<IPerson>();
        persons.Add(new Person()
        {
            LastName = "asdf",
            Name = "asdf",
            MobileNo = "123123"
        });

        persons.Add(new Person()
        {
            LastName = "aaaa",
            Name = "ffffdd",
            MobileNo = "1231232"
        });

        string x = PersonList("somelistname", persons);
    }


    public string PersonList(string listName, IEnumerable<IPerson> persons)
    {
        //dictionary.Add("name", new String[1] { listName });
        dictionary.Add("list", persons.ToArray());

        return PrivateMethod("personList", dictionary);
    }

    private string PrivateMethod(string value, Dictionary<string, object[]> parameters)
    {
        foreach (KeyValuePair<string, object[]> kvp in parameters)
        {
            IPerson[] persons = kvp.Value.Cast<IPerson>().ToArray();

        }

        return "somestring";
    }
查看更多
登录 后发表回答