Getting pointer to overloaded procedure



Can anyone tell me a way I can get a pointer to an overloaded procedure or
function?

For instance:

procedure Test(S: string); overload;
procedure Test(I: Integer); overload;

..
..
..
var
PToStr, PToInt: Pointer;

PToStr:= @Test; // ??
PToInt:= @Test; // ??




.



Relevant Pages

  • Re: =?ISO-8859-1?Q?compare_two_structs_via_=3D=3D?=
    ... bool operator ==(string x, string y) ... I'm using the phrase "overload" as well. ... "Overriding" there is a mistake. ...
    (microsoft.public.dotnet.languages.csharp)
  • Re: Getting pointer to overloaded procedure
    ... procedure Test(S: string); overload; ... procedure Test; overload; ... PProcS = procedure; ...
    (borland.public.delphi.language.basm)
  • Re: Method.property string
    ... GetData.Col.RowOverload Col to set or get the ... Then would I instantiate the Col class from within the GetData Class to call ... private string name; ... public string GetName() ...
    (microsoft.public.dotnet.framework)
  • Re: Operator Overloading (was: Hashtable)
    ... >>colour + for addition and concatenation to make errors stand out. ... > I a sense, there is another overload. ... > - conversion to string. ... concatenation can lead to surprising behaviour. ...
    (comp.lang.java.programmer)
  • console.writeline overload question
    ... Console.WriteLine (string format, params object[] arg) ... object) overload is not CLS ...
    (microsoft.public.dotnet.languages.csharp)