You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when running NetCore.Console.Client and connecting to NetCore.Console.Server
there is a list of option of what to send to the server
when an object by pressing O it sends the object but the server doesnt recognize the object as person
but it recognize the object as :
"Received an object of type = Newtonsoft.Json.Linq.JObject"
and the code in
if (obj.GetType() == typeof(Person))
is always false since its not the type of person but as Newtonsoft.Json.Linq.JObject
The text was updated successfully, but these errors were encountered:
when running NetCore.Console.Client and connecting to NetCore.Console.Server
there is a list of option of what to send to the server
when an object by pressing O it sends the object but the server doesnt recognize the object as person
but it recognize the object as :
"Received an object of type = Newtonsoft.Json.Linq.JObject"
and the code in
if (obj.GetType() == typeof(Person))
is always false since its not the type of person but as Newtonsoft.Json.Linq.JObject
The text was updated successfully, but these errors were encountered: