我试图通过在Visual Studio 2015中从云浏览器打开到sql server对象资源管理器来访问我的sql数据库.
我收到以下错误:
Cloud Explorer has encountered an unexpected error:
The requested action could not be completed.
Details: Value cannot be null.
Parameter name: User ID
Run Code Online (Sandbox Code Playgroud)
PS当我尝试从我的桌面访问它时,它工作正常.我的笔记本电脑上发生错误.
我有这个枚举
enum Items { pen = 5, watch = 4, rubber = 1, ruler = 8};
Run Code Online (Sandbox Code Playgroud)
我想将watch(现在是4)的值更改为6.所以这样的事情:
Items.watch = 6;
Run Code Online (Sandbox Code Playgroud)
但这不起作用.有任何想法吗?