Click here to Skip to main content
15,923,557 members
Home / Discussions / C#
   

C#

 
QuestionASP.NET runtime error Pin
Member 1492460715-Sep-20 9:54
Member 1492460715-Sep-20 9:54 
AnswerRe: ASP.NET runtime error Pin
Afzaal Ahmad Zeeshan15-Sep-20 11:28
professionalAfzaal Ahmad Zeeshan15-Sep-20 11:28 
GeneralRe: ASP.NET runtime error Pin
Member 1492460715-Sep-20 12:13
Member 1492460715-Sep-20 12:13 
QuestionSystem.NullReferenceException: 'Object reference not set to an instance of an object.' Pin
KaushalDave14-Sep-20 19:56
KaushalDave14-Sep-20 19:56 
AnswerRe: System.NullReferenceException: 'Object reference not set to an instance of an object.' Pin
OriginalGriff14-Sep-20 20:16
mveOriginalGriff14-Sep-20 20:16 
AnswerRe: System.NullReferenceException: 'Object reference not set to an instance of an object.' Pin
Richard Deeming14-Sep-20 21:38
mveRichard Deeming14-Sep-20 21:38 
GeneralRe: System.NullReferenceException: 'Object reference not set to an instance of an object.' Pin
KaushalDave14-Sep-20 22:49
KaushalDave14-Sep-20 22:49 
Questionhow to connect instagram api Pin
many esmaeili13-Sep-20 22:47
many esmaeili13-Sep-20 22:47 
AnswerRe: how to connect instagram api Pin
OriginalGriff13-Sep-20 22:54
mveOriginalGriff13-Sep-20 22:54 
GeneralRe: how to connect instagram api Pin
many esmaeili15-Sep-20 1:40
many esmaeili15-Sep-20 1:40 
GeneralRe: how to connect instagram api Pin
OriginalGriff15-Sep-20 2:18
mveOriginalGriff15-Sep-20 2:18 
GeneralRe: how to connect instagram api Pin
Richard MacCutchan15-Sep-20 3:12
mveRichard MacCutchan15-Sep-20 3:12 
GeneralRe: how to connect instagram api Pin
OriginalGriff15-Sep-20 3:44
mveOriginalGriff15-Sep-20 3:44 
GeneralRe: how to connect instagram api Pin
Gerry Schmitz15-Sep-20 4:20
mveGerry Schmitz15-Sep-20 4:20 
AnswerRe: how to connect instagram api Pin
Richard MacCutchan13-Sep-20 23:09
mveRichard MacCutchan13-Sep-20 23:09 
Questionc# stupid severe issue loop ! Pin
Isawyouoo13-Sep-20 3:25
Isawyouoo13-Sep-20 3:25 
AnswerRe: c# stupid severe issue loop ! Pin
Richard MacCutchan13-Sep-20 4:06
mveRichard MacCutchan13-Sep-20 4:06 
AnswerRe: c# stupid severe issue loop ! Pin
OriginalGriff13-Sep-20 4:06
mveOriginalGriff13-Sep-20 4:06 
AnswerRe: c# stupid severe issue loop ! Pin
harold aptroot13-Sep-20 4:29
harold aptroot13-Sep-20 4:29 
GeneralRe: c# stupid severe issue loop ! Pin
Isawyouoo13-Sep-20 4:55
Isawyouoo13-Sep-20 4:55 
AnswerRe: c# stupid severe issue loop ! Pin
OriginalGriff13-Sep-20 5:18
mveOriginalGriff13-Sep-20 5:18 
GeneralRe: c# stupid severe issue loop ! Pin
harold aptroot13-Sep-20 6:09
harold aptroot13-Sep-20 6:09 
AnswerRe: c# stupid severe issue loop ! Pin
Dave Kreskowiak13-Sep-20 6:00
mveDave Kreskowiak13-Sep-20 6:00 
GeneralRe: c# stupid severe issue loop ! Pin
Isawyouoo16-Feb-21 5:46
Isawyouoo16-Feb-21 5:46 
QuestionUnique correspondence for characters Pin
keeponfalling1213-Sep-20 2:07
keeponfalling1213-Sep-20 2:07 
I need to determine whether each character in the first string can be uniquely replaced by a character in the second string so that the two strings are equal.

Like this:

for "eef" and "ddg"

Result :

True e => d
f =>g

If I have: "efe" and "ddg" the result is "False" because "e" it has "d" and "g". (strings are equal in length)

I need help with the starting point, I made an array to store the characters from input strings and I was thinking to use IndexOf method after that, to return the indexof each character and compare it with the second string. I'm not sure how to implement this.

modified 13-Sep-20 10:21am.

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.