Imported Upstream version 4.4.0.122

Former-commit-id: a99f46acaeba3ab496c7afc02c29b839e30a0d0b
This commit is contained in:
Xamarin Public Jenkins
2016-04-12 13:19:31 -04:00
parent a632333cc7
commit d444f0caa4
118 changed files with 4121 additions and 1632 deletions

View File

@@ -29,6 +29,11 @@ public class MainClass
public static event Action Act = null;
public static dynamic BBB = null;
void ParameterTest (Person ParPerson)
{
Console.WriteLine (nameof (ParPerson.MyCar.Year));
}
public static int Main ()
{
string name;
@@ -61,6 +66,11 @@ public class MainClass
if (name != "ToString")
return 7;
Person LocPerson = null;
name = nameof (LocPerson.MyCar.Year);
if (name != "Year")
return 8;
return 0;
}
}