.Net 核心库源代码(可以使用 Resharper 访问)有时包含奇怪的部分“[....]”,您不仅可以在注释中看到,还可以在代码本身中看到。它是什么意思,为什么会在那里?
来自 HttpWebRequest:
// Return null only on [....] (if we're on the [....] thread). Otherwise throw if no context is available.
internal override ContextAwareResult GetConnectingContext()
{
if (!Async)
{
GlobalLog.ThreadContract(ThreadKinds.User | ThreadKinds.[....], "HttpWebRequest#" + ValidationHelper.HashString(this) + "::GetConnectingContext");
return null;
}