Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/src/System/Threading/SynchronizationContext.cs')
-rw-r--r--src/System.Private.CoreLib/src/System/Threading/SynchronizationContext.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/src/System/Threading/SynchronizationContext.cs b/src/System.Private.CoreLib/src/System/Threading/SynchronizationContext.cs
index 92df1152a..f939c1647 100644
--- a/src/System.Private.CoreLib/src/System/Threading/SynchronizationContext.cs
+++ b/src/System.Private.CoreLib/src/System/Threading/SynchronizationContext.cs
@@ -43,12 +43,12 @@ namespace System.Threading
return ((_props & SynchronizationContextProperties.RequireWaitNotification) != 0);
}
- public virtual void Send(SendOrPostCallback d, Object state)
+ public virtual void Send(SendOrPostCallback d, object state)
{
d(state);
}
- public virtual void Post(SendOrPostCallback d, Object state)
+ public virtual void Post(SendOrPostCallback d, object state)
{
ThreadPool.QueueUserWorkItem(new WaitCallback(d), state);
}