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
~292 People Reached
Favorite Forums
Member Avatar for muzikhera

I have my code on how to encrypt my app but i want my app to have be fixed encrypted app. For security purposes. Below is my code. [CODE]try { Configuration config = ConfigurationManager.OpenExeConfiguration(exeConfigName); ConnectionStringsSection section = config.GetSection("connectionStrings") as ConnectionStringsSection; section.SectionInformation.ProtectSection("DataProtectionCOnfigurationProvider"); config.Save(); Console.WriteLine("Protected = {0}", section.SectionInformation.IsProtected); } catch (Exception ex) …

Member Avatar for zachattack05
0
137
Member Avatar for LegitHugo

Hey, Im trying to figure out how to read a starting and ending point in a string. What Im trying to have accomplished is something like this (This code doesn't work) [CODE] string str = ""; //str = readfrom(textBox1.Text, "start Character", "End Character"); str = readfrom(textBox1.Text, "[", "]"); textbox2.text = …

Member Avatar for abelLazm
0
155