public void SendTurnNumber(int num)
{
Debug.Log ("Send Turn Number");
Hashtable content = new Hashtable();
content[(byte)50]=num;
this.loadBalancingPeer.OpRaiseEvent(EvSendTurnNumber, content, true, new RaiseEventOptions() { CachingOption = EventCaching.AddToRoomCache });
}
it shows error The name `EventCaching' does not exist in the current context
What is the reason for this error
{
Debug.Log ("Send Turn Number");
Hashtable content = new Hashtable();
content[(byte)50]=num;
this.loadBalancingPeer.OpRaiseEvent(EvSendTurnNumber, content, true, new RaiseEventOptions() { CachingOption = EventCaching.AddToRoomCache });
}
it shows error The name `EventCaching' does not exist in the current context
What is the reason for this error