Click here to Skip to main content
15,884,177 members
Home / Discussions / C#
   

C#

 
AnswerRe: Global variable in C# Pin
OriginalGriff28-Mar-15 0:27
mveOriginalGriff28-Mar-15 0:27 
GeneralRe: Global variable in C# Pin
aahamdan4-Apr-15 4:07
aahamdan4-Apr-15 4:07 
GeneralRe: Global variable in C# Pin
OriginalGriff4-Apr-15 4:26
mveOriginalGriff4-Apr-15 4:26 
AnswerRe: Global variable in C# Pin
Afzaal Ahmad Zeeshan28-Mar-15 17:32
professionalAfzaal Ahmad Zeeshan28-Mar-15 17:32 
GeneralRe: Global variable in C# Pin
aahamdan4-Apr-15 4:06
aahamdan4-Apr-15 4:06 
QuestionMobile agent data gathering in WSNs Pin
huthiafa27-Mar-15 22:25
huthiafa27-Mar-15 22:25 
QuestionEnumeration in C#,Different Input returning Same enumeration Pin
KK Kod27-Mar-15 5:01
KK Kod27-Mar-15 5:01 
AnswerRe: Enumeration in C#,Different Input returning Same enumeration Pin
Sascha Lefèvre27-Mar-15 5:16
professionalSascha Lefèvre27-Mar-15 5:16 
No - enums have to be of one of the integer types. Also you can't define multiple members of the same name like you did there (ABC, ABC, DEF, DEF). You could use a static class instead:
C#
public static class Alphabet
{
   public static readonly string A = "A";
   public static readonly string AB = "AB";
}

GeneralRe: Enumeration in C#,Different Input returning Same enumeration Pin
KK Kod27-Mar-15 5:25
KK Kod27-Mar-15 5:25 
AnswerRe: Enumeration in C#,Different Input returning Same enumeration Pin
Eddy Vluggen27-Mar-15 5:22
professionalEddy Vluggen27-Mar-15 5:22 
GeneralRe: Enumeration in C#,Different Input returning Same enumeration Pin
KK Kod27-Mar-15 5:26
KK Kod27-Mar-15 5:26 
GeneralRe: Enumeration in C#,Different Input returning Same enumeration Pin
Eddy Vluggen27-Mar-15 6:20
professionalEddy Vluggen27-Mar-15 6:20 
AnswerRe: Enumeration in C#,Different Input returning Same enumeration Pin
PIEBALDconsult27-Mar-15 15:52
mvePIEBALDconsult27-Mar-15 15:52 
QuestionImage segmentation - show or hide clusters Pin
Member 1133638227-Mar-15 4:15
Member 1133638227-Mar-15 4:15 
AnswerRe: Image segmentation - show or hide clusters Pin
Eddy Vluggen27-Mar-15 9:29
professionalEddy Vluggen27-Mar-15 9:29 
QuestionI found some issues in coding but I don't know how to solve them. Could you give me some advices ? Pin
patrickjiang258026-Mar-15 15:35
patrickjiang258026-Mar-15 15:35 
AnswerRe: I found some issues in coding but I don't know how to solve them. Could you give me some advices ? Pin
Afzaal Ahmad Zeeshan26-Mar-15 17:01
professionalAfzaal Ahmad Zeeshan26-Mar-15 17:01 
GeneralRe: I found some issues in coding but I don't know how to solve them. Could you give me some advices ? Pin
patrickjiang258026-Mar-15 22:27
patrickjiang258026-Mar-15 22:27 
GeneralRe: I found some issues in coding but I don't know how to solve them. Could you give me some advices ? Pin
Afzaal Ahmad Zeeshan26-Mar-15 22:39
professionalAfzaal Ahmad Zeeshan26-Mar-15 22:39 
GeneralRe: I found some issues in coding but I don't know how to solve them. Could you give me some advices ? Pin
patrickjiang258026-Mar-15 22:49
patrickjiang258026-Mar-15 22:49 
GeneralRe: I found some issues in coding but I don't know how to solve them. Could you give me some advices ? Pin
Afzaal Ahmad Zeeshan26-Mar-15 22:51
professionalAfzaal Ahmad Zeeshan26-Mar-15 22:51 
GeneralRe: I found some issues in coding but I don't know how to solve them. Could you give me some advices ? Pin
patrickjiang258026-Mar-15 22:58
patrickjiang258026-Mar-15 22:58 
GeneralRe: I found some issues in coding but I don't know how to solve them. Could you give me some advices ? Pin
F-ES Sitecore27-Mar-15 0:41
professionalF-ES Sitecore27-Mar-15 0:41 
GeneralRe: I found some issues in coding but I don't know how to solve them. Could you give me some advices ? Pin
patrickjiang258027-Mar-15 4:37
patrickjiang258027-Mar-15 4:37 
GeneralRe: I found some issues in coding but I don't know how to solve them. Could you give me some advices ? Pin
F-ES Sitecore27-Mar-15 4:54
professionalF-ES Sitecore27-Mar-15 4:54 

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.