private PropertyDeclarationSyntax CreateArray(SymbolData symbol)
        {
            var type = SF.ArrayType(
                SF.ParseTypeName(SymbolTypeConverter.Convert(symbol)),
                SF.List(new ArrayRankSpecifierSyntax[]
            {
                SF.ArrayRankSpecifier(),
            }));

            return(CreatePropertyImpl(type, symbol));
        }
        private PropertyDeclarationSyntax CreateProperty(SymbolData symbol)
        {
            var type = SF.ParseTypeName(SymbolTypeConverter.Convert(symbol));

            return(CreatePropertyImpl(type, symbol));
        }