Skip to content

Instantly share code, notes, and snippets.

@esse
Last active December 21, 2015 13:39
Show Gist options
  • Save esse/6313978 to your computer and use it in GitHub Desktop.
Save esse/6313978 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Populacja
{
public int dupa;
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
namespace ConsoleApplication1
{
class Dna
{
public Populacja pop;
public ArrayList popList;
public Dna()
{
popList = new ArrayList();
popList.Add(new Populacja);
((Populacja)popList[0]).dupa
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment