ExampleRequest.ExampleRequest C# (CSharp) 메소드

ExampleRequest() 공개 메소드

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