Skip to content

Commit b48540e

Browse files
Removed playground code. (#75)
Removed playground code.
1 parent 5090eb8 commit b48540e

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

OnixLabs.Playground/Program.cs

-23
Original file line numberDiff line numberDiff line change
@@ -12,34 +12,11 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
using System;
16-
using System.Reflection;
17-
using System.Runtime.CompilerServices;
18-
1915
namespace OnixLabs.Playground;
2016

2117
internal static class Program
2218
{
2319
private static void Main()
2420
{
25-
try
26-
{
27-
InvalidOperationException ex = new("Hello");
28-
29-
foreach (PropertyInfo property in ex.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance))
30-
{
31-
Console.WriteLine($"{property.Name} = {property.GetValue(ex)}");
32-
}
33-
34-
throw ex;
35-
}
36-
catch (Exception ex)
37-
{
38-
foreach (PropertyInfo property in ex.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance))
39-
{
40-
Console.WriteLine($"{property.Name} = {property.GetValue(ex)}");
41-
}
42-
}
43-
4421
}
4522
}

0 commit comments

Comments
 (0)