Click here to Skip to main content
15,792,609 members
Home / Discussions / C#
   

C#

 
AnswerRe: c# stupid severe issue loop ! Pin
Dave Kreskowiak13-Sep-20 7:00
mveDave Kreskowiak13-Sep-20 7:00 
GeneralRe: c# stupid severe issue loop ! Pin
Isawyouoo16-Feb-21 6:46
Isawyouoo16-Feb-21 6:46 
QuestionUnique correspondence for characters Pin
keeponfalling1213-Sep-20 3:07
keeponfalling1213-Sep-20 3:07 
AnswerRe: Unique correspondence for characters Pin
OriginalGriff13-Sep-20 5:07
mvaOriginalGriff13-Sep-20 5:07 
GeneralRe: Unique correspondence for characters Pin
keeponfalling1213-Sep-20 5:22
keeponfalling1213-Sep-20 5:22 
GeneralRe: Unique correspondence for characters Pin
OriginalGriff13-Sep-20 5:54
mvaOriginalGriff13-Sep-20 5:54 
AnswerRe: Unique correspondence for characters Pin
trønderen13-Sep-20 5:33
trønderen13-Sep-20 5:33 
AnswerRe: Unique correspondence for characters Pin
Gerry Schmitz13-Sep-20 6:58
mveGerry Schmitz13-Sep-20 6:58 
Strings can be treated as an array of characters so you don't have to create "input arrays".
C#
string a = "eef";
string b = "ddg";

Dictionary<char, <list<char>> dic = new ...

if ( a.Length == b.Length ) {
   for ( int i = 0; i < a.Length; i++ ) {
      if ( dic.ContainsKey( a[i] ) { 
         // etc.
      }
   }
}
It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it.
― Confucian Analects: Rules of Confucius about his food

GeneralRe: Unique correspondence for characters Pin
keeponfalling1214-Sep-20 5:05
keeponfalling1214-Sep-20 5:05 
QuestionHow to add Key and MergeField dynamically into WordProcessing document through C# program Pin
Ganapatisb10-Sep-20 23:30
Ganapatisb10-Sep-20 23:30 
SuggestionRe: How to add Key and MergeField dynamically into WordProcessing document through C# program Pin
Richard MacCutchan10-Sep-20 23:37
mveRichard MacCutchan10-Sep-20 23:37 
Rant[REPOST]: How to add Key and MergeField dynamically into WordProcessing document through C# program Pin
Richard Deeming10-Sep-20 23:49
mveRichard Deeming10-Sep-20 23:49 
QuestionRe: How to add Key and MergeField dynamically into WordProcessing document through C# program Pin
Eddy Vluggen12-Sep-20 17:02
professionalEddy Vluggen12-Sep-20 17:02 
QuestionFuzzy Icons Pin
Richard Andrew x649-Sep-20 16:38
professionalRichard Andrew x649-Sep-20 16:38 
AnswerRe: Fuzzy Icons Pin
Peter_in_27809-Sep-20 18:05
professionalPeter_in_27809-Sep-20 18:05 
GeneralRe: Fuzzy Icons Pin
Richard Andrew x649-Sep-20 21:40
professionalRichard Andrew x649-Sep-20 21:40 
GeneralRe: Fuzzy Icons Pin
Peter_in_27809-Sep-20 21:46
professionalPeter_in_27809-Sep-20 21:46 
GeneralRe: Fuzzy Icons Pin
Richard Andrew x649-Sep-20 22:02
professionalRichard Andrew x649-Sep-20 22:02 
AnswerRe: Fuzzy Icons Pin
Richard MacCutchan9-Sep-20 22:46
mveRichard MacCutchan9-Sep-20 22:46 
GeneralRe: Fuzzy Icons Pin
Richard Andrew x649-Sep-20 22:52
professionalRichard Andrew x649-Sep-20 22:52 
GeneralRe: Fuzzy Icons Pin
Richard MacCutchan9-Sep-20 23:23
mveRichard MacCutchan9-Sep-20 23:23 
GeneralRe: Fuzzy Icons Pin
Richard Andrew x649-Sep-20 23:25
professionalRichard Andrew x649-Sep-20 23:25 
AnswerRe: Fuzzy Icons Pin
Gerry Schmitz10-Sep-20 9:22
mveGerry Schmitz10-Sep-20 9:22 
GeneralRe: Fuzzy Icons Pin
Richard Andrew x6410-Sep-20 9:50
professionalRichard Andrew x6410-Sep-20 9:50 
GeneralRe: Fuzzy Icons Pin
Gerry Schmitz10-Sep-20 10:24
mveGerry Schmitz10-Sep-20 10:24 

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.