Foxoft.Ci.GenCs.WriteBaseType C# (CSharp) Method

WriteBaseType() private method

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