PMA\libraries\plugins\export\TableProperty::formatCs PHP Метод

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

Formats a string for C#
public formatCs ( string $text ) : string
$text string string to be formatted
Результат string formatted text
    public function formatCs($text)
    {
        $text = str_replace("#name#", ExportCodegen::cgMakeIdentifier($this->name, false), $text);
        return $this->format($text);
    }