Addition Subtraction Using Delegates
Addition Subtraction Using Delegates
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Delegate Operations</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2>Perform Addition and Subtraction Using Delegates</h2>
aspx.cs-
using System;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Practical_2b
{
public partial class Practical_2b : System.Web.UI.Page
{
// Define delegate type for operations
public delegate double Operation(double x, double y);