Lab 088
Lab 088
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LabCSharp08
{
abstract class F
{
private string x = "Ferreiras, Castro";
private double y = 12.34e+12;
protected long z = 987364354;
protected byte w = 34;
class G: F
{
public G()
{
}
private int s = 9998833;
class TesterClass
{
static void Main(string[] args)
{
G cl = new G();
cl.verObjeto();
Console.ReadKey();
}
}
}