Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Comparison of C Sharp and Java
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== C# delegates and equivalent Java constructs === {| style="width:100%;" class="wikitable" |- ! style="width:50%;"| Java !! style="width:50%;"| C# |- valign="top" | <syntaxhighlight lang=Java style="font-size:90%"> // a target class class Target { public boolean targetMethod(String arg) { // do something return true; } } // usage void doSomething() { // construct a target with the target method var target = new Target(); // capture the method reference Function<String, Boolean> ivk = target::targetMethod; // invokes the referenced method var result = ivk.apply("argumentstring"); } </syntaxhighlight> |<!-- This is Visual Studio Default Style. C# is generally GNU not Ritchie --> <syntaxhighlight lang="csharp" style="font-size:90%"> // a target class class Target { public bool TargetMethod(string arg) { // do something return true; } } // usage void DoSomething() { // construct a target with the target method var target = new Target(); // capture the delegate for later invocation Func<string, bool> dlg = target.TargetMethod; // invoke the delegate bool result = dlg("argumentstring"); } </syntaxhighlight> |}
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)