Namespace error - how to fix?
I'm new to Visual Studio 2010, how do I fix the following error?
Error: The type or namespace name 'Xml' does not exist in the namespace 'System.Security.Cryptography' (are you missing an assembly reference?)
with code:
using System;
using System.Xml;
using System.Security.Cryptography;
u开发者_如何转开发sing System.Security.Cryptography.Xml;
You need to add a reference to the "System.Security" assembly. (Right-click project - add reference).
精彩评论