POV-Ray : Newsgroups : povray.off-topic : C# 4.0 Default parameters : Re: C# 4.0 Default parameters Server Time
6 Sep 2024 15:18:18 EDT (-0400)
  Re: C# 4.0 Default parameters  
From: Warp
Date: 4 Feb 2009 14:12:43
Message: <4989e8aa@news.povray.org>
Mike Raiford <"m[raiford]!at"@gmail.com> wrote:
> Transparently.

> e.g.

> delegate void myDel(int x);

> class SomeClass
> {
>    public int myValue;

>    public void DoInstanceStuff(int x)
>    {
>      myValue = x;
>    }

>    public static void Main()
>    {
>      SomeClass c = new SomeClass();

>      myDel d = c.DoInstanceStuff

>      d(6); // this sets c.myValue to 6;

>    }
> }

  So you can't use the same function delegate for calling a member
function of two different objects?

-- 
                                                          - Warp


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.