J'ai remarqué dans System.Threading.TimerBase.Dispose()
que la méthode contient un bloc try{} finally{}
mais le bloc try{}
est vide.
Y a-t-il une utilité à utiliser try{} finally{}
avec un bloc try
vide ?
[ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)]
internal bool Dispose(WaitHandle notifyObject)
{
bool status = false;
bool bLockTaken = false;
RuntimeHelpers.PrepareConstrainedRegions();
try {
}
finally {
do {
if (Interlocked.CompareExchange(ref m_lock, 1, 0) == 0) {
bLockTaken = true;
try {
status = DeleteTimerNative(notifyObject.SafeWaitHandle);
}
finally {
m_lock = 0;
}
}
Thread.SpinWait(1);
// yield to processor
}
while (!bLockTaken);
GC.SuppressFinalize(this);
}
return status;
}
0 votes
System.Diagnostics.Process vers la ligne 2144 également: referencesource.microsoft.com/#System/services/monitoring/…