Example #1
0
	static bool Two ()
	{
		List l = new UberList (1);
		l.Add (1);
		
		foreach (int i in l)
			if (i == 1)
				return true;
		return false;
	}
Example #2
0
    static bool Two()
    {
        List l = new UberList(1);

        l.Add(1);

        foreach (int i in l)
        {
            if (i == 1)
            {
                return(true);
            }
        }
        return(false);
    }
Example #3
0
 public UberBuilder()
 {
     Data = new UberList();
     Error = new UberList();
 }
Example #4
0
 public UberData()
 {
     Action = UberActions.NotSet;
     Transclude = UberTransclusion.NotSet;
     Data = new UberList();
 }