Click here to Skip to main content
15,906,816 members
Home / Discussions / C#
   

C#

 
GeneralRe: Dialog Box Pin
Christian Graus12-Dec-07 8:40
protectorChristian Graus12-Dec-07 8:40 
GeneralRe: Dialog Box Pin
Skippums12-Dec-07 8:43
Skippums12-Dec-07 8:43 
GeneralRe: Dialog Box Pin
tsaunders13-Dec-07 4:33
tsaunders13-Dec-07 4:33 
QuestionSystem.Security.Cryptography.ProtectedData Does Not Exist [modified] Pin
Skippums12-Dec-07 6:41
Skippums12-Dec-07 6:41 
GeneralRe: System.Security.Cryptography.ProtectedData Does Not Exist Pin
Sathesh Sakthivel12-Dec-07 6:53
Sathesh Sakthivel12-Dec-07 6:53 
GeneralRe: System.Security.Cryptography.ProtectedData Does Not Exist Pin
Skippums12-Dec-07 8:39
Skippums12-Dec-07 8:39 
GeneralRe: System.Security.Cryptography.ProtectedData Does Not Exist Pin
Dave Kreskowiak12-Dec-07 8:54
mveDave Kreskowiak12-Dec-07 8:54 
GeneralRe: System.Security.Cryptography.ProtectedData Does Not Exist Pin
Skippums12-Dec-07 9:05
Skippums12-Dec-07 9:05 
Actually, the flow went like this...
// NOT referencing System.Security, but this still compiles and works
using System.Security.Cryptography;

namespace foo {
    public class myClass {
        private RSACryptoServiceProvider m_AsymAlg =
            new RSACryptoServiceProvider(ASYM_KEY_SIZE);
        private RijndaelManaged m_SymAlg  = new RijndaelManaged();
      
    }
}

Then, I tried to access the ProtectedData class from the SAME NAMESPACE I had previously imported, but that reference was NOT there. Why was I able to access both the RijndaelManaged and RSACryptoServiceProvider classes without the reference to System.Security(.dll), but not the ProtectedData class? This seems like it is inconsistent, unless the two are in different DLL's with the same namespace declared. Thanks,

Sounds like somebody's got a case of the Mondays

-Jeff

GeneralRe: System.Security.Cryptography.ProtectedData Does Not Exist Pin
Dave Kreskowiak12-Dec-07 12:41
mveDave Kreskowiak12-Dec-07 12:41 
GeneralRe: System.Security.Cryptography.ProtectedData Does Not Exist Pin
Sathesh Sakthivel12-Dec-07 9:01
Sathesh Sakthivel12-Dec-07 9:01 
QuestionPrinting an image in the middle of a page Pin
devzav12-Dec-07 6:40
devzav12-Dec-07 6:40 
GeneralRe: Printing an image in the middle of a page Pin
Paul Conrad23-Dec-07 9:57
professionalPaul Conrad23-Dec-07 9:57 
GeneralRe: Printing an image in the middle of a page Pin
devzav23-Dec-07 10:35
devzav23-Dec-07 10:35 
QuestionUsing Interfaces to force the creation of methods Pin
Clive D. Pottinger12-Dec-07 6:21
Clive D. Pottinger12-Dec-07 6:21 
GeneralRe: Using Interfaces to force the creation of methods Pin
Skippums12-Dec-07 6:44
Skippums12-Dec-07 6:44 
GeneralRe: Using Interfaces to force the creation of methods Pin
Clive D. Pottinger12-Dec-07 7:06
Clive D. Pottinger12-Dec-07 7:06 
GeneralRe: Using Interfaces to force the creation of methods Pin
Judah Gabriel Himango12-Dec-07 9:02
sponsorJudah Gabriel Himango12-Dec-07 9:02 
GeneralRe: Using Interfaces to force the creation of methods Pin
Pete O'Hanlon12-Dec-07 11:06
mvePete O'Hanlon12-Dec-07 11:06 
GeneralSplash Screen Shows Black before Showing Pin
Sukhjinder_K12-Dec-07 5:55
Sukhjinder_K12-Dec-07 5:55 
GeneralRe: Splash Screen Shows Black before Showing Pin
Luc Pattyn12-Dec-07 7:23
sitebuilderLuc Pattyn12-Dec-07 7:23 
GeneralRemoving base.OnPaint(e) still does not help Pin
Sukhjinder_K12-Dec-07 16:22
Sukhjinder_K12-Dec-07 16:22 
GeneralRe: Removing base.OnPaint(e) still does not help Pin
Luc Pattyn13-Dec-07 7:22
sitebuilderLuc Pattyn13-Dec-07 7:22 
GeneralBut my Image is Non-Rectangular Pin
Sukhjinder_K13-Dec-07 22:11
Sukhjinder_K13-Dec-07 22:11 
GeneralGraphicsPaths and Scrolling Pin
DahrkDaiz12-Dec-07 5:38
DahrkDaiz12-Dec-07 5:38 
GeneralRe: GraphicsPaths and Scrolling Pin
Paul Conrad23-Dec-07 9:57
professionalPaul Conrad23-Dec-07 9:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.