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

WriteBaseType() protected method

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