Click here to Skip to main content
15,888,142 members
Home / Discussions / C#
   

C#

 
AnswerRe: String manipulation Pin
Simon P Stevens30-Jul-08 0:19
Simon P Stevens30-Jul-08 0:19 
GeneralRe: String manipulation Pin
leppie30-Jul-08 0:26
leppie30-Jul-08 0:26 
GeneralRe: String manipulation Pin
Simon P Stevens30-Jul-08 0:31
Simon P Stevens30-Jul-08 0:31 
AnswerRe: String manipulation Pin
PIEBALDconsult30-Jul-08 4:26
mvePIEBALDconsult30-Jul-08 4:26 
QuestionCTRL+C and CTRL+V in grid control Pin
eli1502197929-Jul-08 23:51
eli1502197929-Jul-08 23:51 
AnswerRe: CTRL+C and CTRL+V in grid control Pin
paas30-Jul-08 4:25
paas30-Jul-08 4:25 
QuestionGet method name as string Pin
Nicholas Butler29-Jul-08 23:36
sitebuilderNicholas Butler29-Jul-08 23:36 
AnswerRe: Get method name as string Pin
leppie30-Jul-08 0:22
leppie30-Jul-08 0:22 
Although not exactly what you are looking for, but at least a bit more generic:
class TestClass
{
  public static void Test()
  {
    string s = GetName( new Func<string,int>(Method));
  }

  static int Method(string s) { return 0; }

  static string GetName(Delegate method)
  {
    return method.Method.Name;
  }
}

I will try think of a better way Smile | :)

xacc.ide - now with TabsToSpaces support
IronScheme - 1.0 alpha 4a out now (29 May 2008)

GeneralRe: Get method name as string Pin
Nicholas Butler30-Jul-08 0:36
sitebuilderNicholas Butler30-Jul-08 0:36 
AnswerRe: Get method name as string Pin
DaveyM6930-Jul-08 1:09
professionalDaveyM6930-Jul-08 1:09 
GeneralRe: Get method name as string Pin
leppie30-Jul-08 2:27
leppie30-Jul-08 2:27 
QuestionControl.Invoke() equivalent with Thread object Pin
ccufi29-Jul-08 23:36
ccufi29-Jul-08 23:36 
AnswerRe: Control.Invoke() equivalent with Thread object Pin
Frank Horn30-Jul-08 0:36
Frank Horn30-Jul-08 0:36 
AnswerRe: Control.Invoke() equivalent with Thread object Pin
Alan N30-Jul-08 4:55
Alan N30-Jul-08 4:55 
QuestionHow to run application from network folder Pin
AndrusM29-Jul-08 23:12
AndrusM29-Jul-08 23:12 
AnswerRe: How to run application from network folder Pin
Simon P Stevens29-Jul-08 23:47
Simon P Stevens29-Jul-08 23:47 
GeneralRe: How to run application from network folder Pin
AndrusM30-Jul-08 0:25
AndrusM30-Jul-08 0:25 
GeneralRe: How to run application from network folder Pin
Simon P Stevens30-Jul-08 1:16
Simon P Stevens30-Jul-08 1:16 
GeneralRe: How to run application from network folder Pin
AndrusM30-Jul-08 1:22
AndrusM30-Jul-08 1:22 
GeneralRe: How to run application from network folder Pin
Simon P Stevens30-Jul-08 1:34
Simon P Stevens30-Jul-08 1:34 
GeneralRe: How to run application from network folder Pin
AndrusM30-Jul-08 7:25
AndrusM30-Jul-08 7:25 
GeneralRe: How to run application from network folder Pin
Simon P Stevens30-Jul-08 21:30
Simon P Stevens30-Jul-08 21:30 
GeneralRe: How to run application from network folder Pin
AndrusM30-Jul-08 22:38
AndrusM30-Jul-08 22:38 
GeneralRe: How to run application from network folder Pin
AndrusM30-Jul-08 1:35
AndrusM30-Jul-08 1:35 
GeneralRe: How to run application from network folder Pin
Simon P Stevens30-Jul-08 1:41
Simon P Stevens30-Jul-08 1:41 

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.