3

In the Reshaper 8.1 the new ToString() Format Completion is great, but for DateTime all the options seem to be in America culture, e.g. month/ day /year, being in Australia this is not very useful is there any way you can change the default completion options so that day/month/year and day-month-year could be added or replace the current list of formats,

If not how can I turn off only the datetime toString code completion ?

4

1 回答 1

2

ToString完成项使用不变文化进行格式化,这意味着输出DateTimeMM/dd/yyyy. 这无法更改,并且ToString完成项无法删除或禁用。

正如@python_kaa 所说,您可以在http://youtrack.jetbrains.com/issues/RSRP提交功能请求。如果你能提供一个你期望它如何工作的例子,那将会很有用。ReSharper 的复杂性在于确定它应该使用哪种文化 - 从上下文中很难知道要使用哪种文化(如果传入,它的价值是什么?运行代码的环境文化是什么?它可能是在另一台机器上运行,或者在执行 Web 请求的服务器上运行。还是应该始终是代码编辑器的 UI 文化?)

于 2013-09-30T08:00:37.323 回答