• RSS
  • My Account
Dragstone
  • Home
  • Dragstone
  • Plugins
    • Logic
      • Alternator
      • DayGate
      • Twilight Calendar
      • Filter
      • Gate
      • PID Controller
      • PulseTrigger
      • TimeGate
      • TextPad
      • TriggerCounter
    • IO
      • Azure Event Hub
      • Command
      • DataSave
      • FileLoad
      • FileWatcher
      • SendMail
      • WebGet
    • HVAC
      • Fläktwoods
    • RFXtrx
      • RFXtrx Controller
    • Robotics
      • Worx Landroid
    • Security
      • Ping
    • Media
      • SamsungTV
      • SpeechPad
    • Lighting
      • Philips Hue
    • Weather
      • ControlByWeb X-320M
      • OpenWeatherMap
    • Other
      • Tester
  • Support
    • Documentation
    • News
    • FAQ
  • Contact
  • About
Select Page

Get Started

  • Installation
  • The Principals
  • Controller Ecosystem
  • Tutorial: Your First Project

Plugins

  • Logic
    • Alternator
  • HVAC
    • Fläktwoods

Developer

  • Tools & Platform

< 1 min read

Soon to come!

delegate void Delegate1();
delegate void Delegate2();

static void method(Delegate1 d, Delegate2 e, System.Delegate f)
{
    // Compile-time error.
    //Console.WriteLine(d == e);

    // OK at compile-time. False if the run-time type of f
    // is not the same as that of d.
    Console.WriteLine(d == f);
}
What are your Feelings

Submit a Comment Cancel reply

You must be logged in to post a comment.

  • Tutorial: A short introduction to create and run a project