📜  如何在 c# 代码示例中传递可选的 guid 参数

📅  最后修改于: 2022-03-11 14:49:02.838000             🧑  作者: Mango

代码示例1
public void Problem(Guid optional = default(Guid))
{
  // when called without parameters this will be true
  var guidIsEmpty = optional == Guid.Empty;
}