ApiParser.UnityApiParameter.UnityApiParameter C# (CSharp) Метод

UnityApiParameter() публичный Метод

public UnityApiParameter ( string name, ApiType type, string description ) : System
name string
type ApiType
description string
Результат System
        public UnityApiParameter(string name, ApiType type, string description)
        {
            myName = name;
            myType = type;
            myDescription = description;
        }