Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a method group that contains elements such as:

class Foobar
{
    public static DataSet C(out string SpName)
    {
        SpName = "p_C";
        return null;
    }

    public static DataSet C()
    {
        string SpName;
        C(out SpName);
        return DataAccess.CallSp( SpName);

    }
}

And what I want to do is

 ButtonC.Text = DataAccess.GetSpName(**?????** Foobar.C )

where I want to do this action:

 public string GetSpName(**(?????)** method)
 {
     string spName = string.Empty;
     method(out spName);
     return spName;
 }

I have tried various items as ????? without success. I'm missing some fine point :-(

share|improve this question

1 Answer

You need to declare a delegate:

// A delegate that matches the signature of
// public static DataSet C      (out string SpName)
public delegate  DataSet GetName(out string name);

public class DataAccess
{
   // ...

   static public string GetSpName(GetName nameGetter)
   {
       // TODO: Handle case where nameGetter == null
       string spName;
       nameGetter(out spName);
       return spName;
   }

   // ...
}

// ...

public void SomeFunction()
{
    // Call our GetSpName function with a new delegate, initialized
    // with the function "C"
    ButtonC.Text = DataAccess.GetSpName(new GetName( Foobar.C ))
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.