Click here to Skip to main content
15,905,508 members
Home / Discussions / C#
   

C#

 
GeneralRe: Charting example- high priority Pin
SagarGK29-Oct-12 23:00
SagarGK29-Oct-12 23:00 
GeneralRe: Charting example- high priority Pin
Pete O'Hanlon29-Oct-12 23:35
mvePete O'Hanlon29-Oct-12 23:35 
GeneralRe: Charting example- high priority Pin
SagarGK29-Oct-12 23:37
SagarGK29-Oct-12 23:37 
GeneralRe: Charting example- high priority Pin
Pete O'Hanlon29-Oct-12 23:45
mvePete O'Hanlon29-Oct-12 23:45 
GeneralRe: Charting example- high priority Pin
Richard MacCutchan30-Oct-12 0:20
mveRichard MacCutchan30-Oct-12 0:20 
GeneralRe: Charting example- high priority Pin
SagarGK30-Oct-12 0:33
SagarGK30-Oct-12 0:33 
GeneralRe: Charting example- high priority Pin
Richard MacCutchan30-Oct-12 0:45
mveRichard MacCutchan30-Oct-12 0:45 
AnswerRe: Charting example- high priority Pin
V.29-Oct-12 3:15
professionalV.29-Oct-12 3:15 
AnswerMy Vote of 1 Pin
Keith Barrow29-Oct-12 6:11
professionalKeith Barrow29-Oct-12 6:11 
AnswerRe: Charting example- high priority Pin
wizardzz29-Oct-12 11:19
wizardzz29-Oct-12 11:19 
GeneralRe: Charting example- high priority Pin
SagarGK29-Oct-12 17:10
SagarGK29-Oct-12 17:10 
GeneralRe: Charting example- high priority Pin
Member 939112629-Oct-12 22:18
Member 939112629-Oct-12 22:18 
GeneralRe: Charting example- high priority Pin
SagarGK29-Oct-12 22:24
SagarGK29-Oct-12 22:24 
QuestionRegex getting special characters Pin
PozzaVecia28-Oct-12 4:18
PozzaVecia28-Oct-12 4:18 
AnswerRe: Regex getting special characters Pin
Richard Andrew x6428-Oct-12 4:37
professionalRichard Andrew x6428-Oct-12 4:37 
AnswerRe: Regex getting special characters Pin
Richard MacCutchan28-Oct-12 5:17
mveRichard MacCutchan28-Oct-12 5:17 
AnswerRe: Regex getting special characters Pin
OriginalGriff29-Oct-12 1:27
mveOriginalGriff29-Oct-12 1:27 
QuestionHow do I expose the LoadCompleted method in the WebBrowser class in WPF C#? Pin
Xarzu27-Oct-12 19:00
Xarzu27-Oct-12 19:00 
AnswerRe: How do I expose the LoadCompleted method in the WebBrowser class in WPF C#? Pin
OriginalGriff27-Oct-12 22:14
mveOriginalGriff27-Oct-12 22:14 
AnswerRe: How do I expose the LoadCompleted method in the WebBrowser class in WPF C#? Pin
Richard MacCutchan28-Oct-12 0:21
mveRichard MacCutchan28-Oct-12 0:21 
QuestionHow to convert a string to an unique numeric value? Pin
gibsray27-Oct-12 1:09
gibsray27-Oct-12 1:09 
AnswerRe: How to convert a string to an unique numeric value? Pin
Alan N27-Oct-12 2:12
Alan N27-Oct-12 2:12 
Your process has 3 separate steps
1) Encoding/Decoding of string to byte array
2) Conversion of byte array to BigInteger and vice versa
3) Encryption/Decryption of BigInteger

Your will need to know which step or steps are giving an error to solve this problem.

Certainly ASCII encoding won't be suitable unless the input is restricted to characters codes below 128. UTF8 should be ok, but the test is the round trip conversion from string to byte array and back again.

BigInteger conversion from/to a byte array, presumably via the BigInteger(byte[]) constructor and the ToByteArray method, should be ok as well, but again don't assume anything and perform a few tests.

Do the same for the encrypt/decrypt cycle and then you should be in a much better position to move forward towards a solution.

Alan.
AnswerRe: How to convert a string to an unique numeric value? Pin
Clifford Nelson29-Oct-12 9:56
Clifford Nelson29-Oct-12 9:56 
AnswerRe: How to convert a string to an unique numeric value? Pin
BobJanova29-Oct-12 23:39
BobJanova29-Oct-12 23:39 
QuestionWould you use a custom enumerator? Pin
DaveyM6926-Oct-12 21:40
professionalDaveyM6926-Oct-12 21:40 

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.