Foxoft.Ci.GenCs.WriteBaseType C# (CSharp) Méthode

WriteBaseType() private méthode

private WriteBaseType ( CiType type ) : void
type CiType
Résultat void
        void WriteBaseType(CiType type)
        {
            if (type is CiStringType)
            Write("string");
            else
            Write(type.Name);
        }