Exemplo n.º 1
0
	static int Main (string[] args) {
		GetElementTypeTest me = new GetElementTypeTest ();
		Type t = me.GetType ();
		Type elementt = t.GetElementType ();

		if (elementt != null)
			return 1;
		return 0;
	}
Exemplo n.º 2
0
    static int Main(string[] args)
    {
        GetElementTypeTest me = new GetElementTypeTest();
        Type t        = me.GetType();
        Type elementt = t.GetElementType();

        if (elementt != null)
        {
            return(1);
        }
        return(0);
    }