C# program that defines a class to represent a bank account which includes the following member
Object:
to represent a bank account which includes the subsequent members:
Data members:
1. Name of the depositor
2. Account Number
3. Withdraw amount
4. Balance amount in the account
Member Functions:
1. To assign initial values
2. To deposit an amount
3. To withdraw amount after checking the balance
4. To display name and balance. C# Projects with Source Code
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace oop3
{
class bank…continue code for click here…