Click here to Skip to main content
15,891,136 members
Home / Discussions / C#
   

C#

 
GeneralRe: Best method for syntax highlighting Pin
WebMaster17-Jul-09 21:39
WebMaster17-Jul-09 21:39 
GeneralRe: Best method for syntax highlighting Pin
WebMaster28-Jul-09 8:41
WebMaster28-Jul-09 8:41 
GeneralRe: Best method for syntax highlighting Pin
Luc Pattyn28-Jul-09 22:37
sitebuilderLuc Pattyn28-Jul-09 22:37 
GeneralRe: Best method for syntax highlighting Pin
Kevin Marois14-Jul-09 9:08
professionalKevin Marois14-Jul-09 9:08 
GeneralRe: Best method for syntax highlighting Pin
Adam R Harris14-Jul-09 10:32
Adam R Harris14-Jul-09 10:32 
QuestionPassing a pointer to array of structs via P/Invoke Pin
Klempie14-Jul-09 6:29
Klempie14-Jul-09 6:29 
Questioncustomizing a ToolStripTextBox Pin
Jim Crafton14-Jul-09 5:38
Jim Crafton14-Jul-09 5:38 
AnswerRe: customizing a ToolStripTextBox Pin
Henry Minute14-Jul-09 5:53
Henry Minute14-Jul-09 5:53 
GeneralRe: customizing a ToolStripTextBox Pin
Jim Crafton14-Jul-09 6:04
Jim Crafton14-Jul-09 6:04 
GeneralRe: customizing a ToolStripTextBox Pin
DaveyM6914-Jul-09 6:26
professionalDaveyM6914-Jul-09 6:26 
Questionreturn string Pin
AndyInUK14-Jul-09 5:22
AndyInUK14-Jul-09 5:22 
AnswerRe: return string Pin
Simon P Stevens14-Jul-09 5:28
Simon P Stevens14-Jul-09 5:28 
GeneralRe: return string Pin
AndyInUK14-Jul-09 5:36
AndyInUK14-Jul-09 5:36 
AnswerRe: return string Pin
Luc Pattyn14-Jul-09 5:42
sitebuilderLuc Pattyn14-Jul-09 5:42 
GeneralRe: return string Pin
AndyInUK14-Jul-09 6:19
AndyInUK14-Jul-09 6:19 
GeneralRe: return string Pin
Luc Pattyn14-Jul-09 6:27
sitebuilderLuc Pattyn14-Jul-09 6:27 
GeneralRe: return string Pin
musefan14-Jul-09 7:10
musefan14-Jul-09 7:10 
AndyInUK wrote:
You learn more when you do stuff rather than reading it.


So why use CodeProject? Do you not think you will have to read what people post in response to your questions.

Also, it is not always the case you learn stuff more by doing it. Your original post said you has trouble with using a value which was not declared in scope (scope being a word you must have learnt somewhere) - no matter how many times you right the same code, it wont suddenly start working. Therefore you have to research, usually by reading, why you have the problem and how to solve it.

In some cases you can use trial and error with a value to change a result, but as Luc hinted, it would be better to read a book on basics than to just 'do' stuff until it passes the compiler checks (which does not guarantee it will work how you want anyway)


Anyway, to make a contribution to your OP...

Based on the example you gave, I think a property would be best suited here...

public static string ABC{
  get{return x.group;}
}


...this avoids the needless parameter and if statement in your function, however if you need a function like you have exemplified then I would do as follows...

public static string Test(Guid id)
{
    if(a == n)
       return x.group;
    return string.Empty;
}


I hope you avoidance of reading has not had an impact on your ability to read my post...

Good luck for the future

Life goes very fast. Tomorrow, today is already yesterday.

GeneralRe: return string Pin
Joe Woodbury14-Jul-09 6:48
professionalJoe Woodbury14-Jul-09 6:48 
GeneralRe: return string Pin
musefan14-Jul-09 6:57
musefan14-Jul-09 6:57 
GeneralRe: return string Pin
Luc Pattyn14-Jul-09 7:04
sitebuilderLuc Pattyn14-Jul-09 7:04 
GeneralRe: return string [modified] Pin
Joe Woodbury14-Jul-09 7:07
professionalJoe Woodbury14-Jul-09 7:07 
GeneralRe: return string Pin
AndyInUK15-Jul-09 5:20
AndyInUK15-Jul-09 5:20 
GeneralRe: return string Pin
Joe Woodbury15-Jul-09 5:35
professionalJoe Woodbury15-Jul-09 5:35 
JokeRe: return string Pin
musefan14-Jul-09 7:18
musefan14-Jul-09 7:18 
GeneralRe: return string Pin
Luc Pattyn14-Jul-09 7:45
sitebuilderLuc Pattyn14-Jul-09 7:45 

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.