我有这种方法,我不明白。我尝试搜索它,但由于我真的不知道要搜索什么,所以我什么也没找到。
有人可以向我解释一下吗?
public List<listElementType> Search(string name,
bool onlyActive = true,
bool onlyDeleted = true,
decimal from = 0,
decimal to = decimal.MaxValue)
{
// Some SQL stuff
return ...;
}
为什么我可以像标题中提到的那样使用它?
Search(name, onlyActive: true);