some text(basic)
some text(extended)
A description
some text
some text(basic)
some text(extended)
h A description:
some text
A description
some text
some text(extended)
some text(extended)
A description
some text
The shell output
some console commands capture
t The example page:
extern> http://some.where.else.tld/page.html
Listing 2
var de = function() {
return (typeof(window.de) == 'object') ? window.de : {};
}();
public class clazzA
{
someFuncA()
{
clazzB b = new clazzB();
b.methodB += new MethodHandler(methodA);
}
methodA(int param)
{
// Do something
}
}
<sxh c#; highlight: [6]>
public class clazzA
{
someFuncA()
{
clazzB b = new clazzB();
b.methodB += new MethodHandler(methodA);
}
methodA(int param)
{
// Do something
}
}
</sxh>
<sxh c#>
public delegate void MethodHandler(int param);
public class clazzB
{
public MethodHandler methodB;
someFuncB()
{
methodB(param);
}
}
</sxh>
classA → someFuncA
clazzB → someFuncB → methodB → methodA → // Do something