ExampleRequest.ExampleRequest C# (CSharp) Méthode

ExampleRequest() public méthode

public ExampleRequest ( int someCondition ) : System.Collections.Generic
someCondition int
Résultat System.Collections.Generic
    public ExampleRequest(int someCondition)
    {
        RequestResult = new List<object>();
        SomeCondition = someCondition;
    }
ExampleRequest