Fix invalid emscripten path file name
[mono-project.git] / sdks / wasm / dependency.cs
blobd4f6962d61d913578fe33cf0246ae54700fd050f
1 using System;
3 namespace Simple {
4 public class Complex {
5 public int A { get; set; }
6 public string B { get; set; }
7 object c;
9 public Complex (int a, string b) {
10 A = a;
11 B = b;
12 this.c = this;
15 public int DoStuff () {
16 return DoOtherStuff ();
19 public int DoOtherStuff () {
20 return DoEvenMoreStuff () - 1;
23 public int DoEvenMoreStuff () {
24 return 1 + BreakOnThisMethod ();
27 public int BreakOnThisMethod () {
28 var x = A + 10;
29 c = $"{x}_{B}";
31 return x;