Imported Upstream version 5.20.0.211

Former-commit-id: 57b2432094c1c827d82d3615bd0e0d6c43ab835c
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-02-14 08:23:21 +00:00
parent 219eec173f
commit cbd50c0997
118 changed files with 225 additions and 52 deletions

View File

@@ -411,9 +411,25 @@ public class Tests : TestsBase, ITest2
new Tests ().evaluate_method ();
Bug59649 ();
inspect_enumerator_in_generic_struct();
if_property_stepping();
return 3;
}
private class TestClass {
private string oneLineProperty = "";
public string OneLineProperty {
get { return oneLineProperty; }
set { oneLineProperty = value; }
}
}
public static void if_property_stepping() {
var test = new TestClass();
if (test.OneLineProperty == "someInvalidValue6049e709-7271-41a1-bc0a-f1f1b80d4125")
return;
Console.Write("");
}
public static void local_reflect () {
//Breakpoint line below, and reflect someField via ObjectMirror;
LocalReflectClass.RunMe ();