When i decompile a X.dll file i can't rebuild it and i receive the following errors
- Severity Code Description Project File Line Suppression State
Error CS1001 Identifier expected Library C:\Users\ ...\Managers\RpcHubManager.cs 52 Active
why the dotpeek create this strange code ,"o__SiteContainer6.<>p__Site7 " ,And what it mean ??,how can i solve this problem ??, thanks in advance
private void OnTimerElapsed(object sender)
{
System.Threading.ThreadPool.QueueUserWorkItem(delegate(object n)
{
foreach (System.Collections.Generic.KeyValuePair<SessionManager, string> current in RpcHubManager.Dashboard_Connections)
{
System.Collections.Generic.List<SymbolMinimizedDTO> updatedSymbolsPrices = this.trader_manager.GetUpdatedSymbolsPrices(current.Key, false);
if (RpcHubManager.<OnTimerElapsed>o__SiteContainer6.<>p__Site7 == null)
{
RpcHubManager.<OnTimerElapsed>o__SiteContainer6.<>p__Site7 = CallSite<Action<CallSite, object, string>>.Create(Binder.InvokeMember(CSharpBinderFlags.ResultDiscarded, "updateSymbols", null, typeof(RpcHubManager), new CSharpArgumentInfo[]
{
CSharpArgumentInfo.Create(CSharpArgumentInfoFlags.None, null),
CSharpArgumentInfo.Create(CSharpArgumentInfoFlags.UseCompileTimeType, null)
}));
}
RpcHubManager.<OnTimerElapsed>o__SiteContainer6.<>p__Site7.Target(RpcHubManager.<OnTimerElapsed>o__SiteContainer6.<>p__Site7, this.hubContext.Clients.Client(current.Value), Json.Encode(updatedSymbolsPrices));
}
});
}