说我有一个功能
public List<FileChangedData> GetFileChanging(DateTime startDateTime)
{
...
}
如果我调用该函数
GetFileChanging(startDate);
有没有办法使用resharper自动生成赋值,即
List<FileChangedData> obj=GetFileChanging(startDate);
答案 0 :(得分:0)
是的,有点... resharper使用[Pure]
属性,以便查看特定方法返回值并且不执行任何其他操作。
因此,您可以使用[Pure]
属性,重塑器会建议您引入变量或字段。
例如
[System.Diagnostics.Contracts.Pure]
public List<FileChangedData> GetFileChanging(DateTime startDateTime)
{
...
}