We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello
Doesn't support complex objects? c is missing in var dictionary ` public class testclass { public string a = "a"; public string b = "a"; }
MemcachedClient mc = MemCached.getInstance(); bool _inserted = mc..Store(StoreMode.Set, "dictionary", new Dictionary<string, object>() { { "a", "1" }, { "b", 1}, { "c", new testclass { a ="111", b="ccc" } } }); var dictionary = mc.Get("dictionary") as Dictionary<string, object>;`
Thx
The text was updated successfully, but these errors were encountered:
@scascalesageinfoes did you got the solution ?
Sorry, something went wrong.
No branches or pull requests
Hello
Doesn't support complex objects? c is missing in var dictionary
`
public class testclass
{
public string a = "a";
public string b = "a";
}
MemcachedClient mc = MemCached.getInstance();
bool _inserted = mc..Store(StoreMode.Set, "dictionary", new Dictionary<string, object>() {
{ "a", "1" },
{ "b", 1},
{ "c", new testclass { a ="111", b="ccc" } }
});
var dictionary = mc.Get("dictionary") as Dictionary<string, object>;`
Thx
The text was updated successfully, but these errors were encountered: