Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~262 People Reached
Favorite Forums
Member Avatar for omeja

Hi, Iam having issues with a part of my code in a windows service that prevents it from being installed with the error,nullrefrenceexception unhandled.here is the code public string GetEncryptedText(string PlainStringToEncrypt) { string DigitalCertificateName = "URAioPmtCert1"; X509Store store = new X509Store(StoreName.Root); X509Certificate2 x509_2 = null; store.Open(OpenFlags.ReadWrite); if (DigitalCertificateName.Length > 0) …

Member Avatar for sknake
0
128
Member Avatar for omeja

Hi, I am trying to windows service to read files but it reads even the ones I already read.How can I only read new files? this is the code // Process the list of files found in the directory. string[] fileEntries = Directory.GetFiles(sourceDir); foreach (string fileName in fileEntries) { // …

Member Avatar for Mitja Bonca
0
134