Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 42999f7

Browse files
authored
Update conversiontest.cs
1 parent b8c6917 commit 42999f7

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/testing/conversiontest.cs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,19 @@ public string GetValue()
6060
return value;
6161
}
6262
}
63+
64+
public class UnicodeString
65+
{
66+
public string value = "안녕";
67+
68+
public string GetString()
69+
{
70+
return value;
71+
}
72+
73+
public override string ToString()
74+
{
75+
return value;
76+
}
77+
}
6378
}

0 commit comments

Comments
 (0)