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"; }
cache.Set("dictionary", new Dictionary<string, object>() { { "a", "1" }, { "b", 1}, { "c", new testclass { a ="111", b="ccc" } } }); var dictionary = cache.Get("dictionary") as Dictionary<string, object>;`
Thx
The text was updated successfully, but these errors were encountered:
testclass has to be [Serializable]. Basically, it has to be able to go through BinaryFormatter and back.
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";
}
cache.Set("dictionary", new Dictionary<string, object>() {
{ "a", "1" },
{ "b", 1},
{ "c", new testclass { a ="111", b="ccc" } }
});
var dictionary = cache.Get("dictionary") as Dictionary<string, object>;`
Thx
The text was updated successfully, but these errors were encountered: