CD Rental Colasaw

import javax.swing.*; import java.awt.event.*; import java.awt.*; import java.text.*; import java.util.*; import java.io.*; import java.io.BufferedReader; import java.lang.*; public class CDGui extends JFrame{ private JTextField txtCDNo, txtCDTitle, txtCDArtist, txtCDType, txtCDStatus; private JLabel CDNo, CDTitle, CDType, CDStatus, CDArtist, lblTitle;

c# Array Part 2 (Using reference types)

Using arrays in c#, you can also declare arrays of custom types. In our example let’s start with a Customer class, having two constructors, 3 properties (FirstName, LastName, ContactNumber), and an override of ToString() method of the Object class. using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ArraysPart2cs {