返回「计算机、信息技术与工程」
CSharp调用Java&与Android交互
本文目录 3 个章节
CSharp调用Java&与Android交互
创建时间:2020/9/28 10:18
Heading
https://www.jb51.net/article/134135.htm https://blog.csdn.net/m0_38096376/article/details/69567409 https://www.jianshu.com/p/b5e3cfcdf081 https://www.cnblogs.com/wufeng0927/p/5178216.html
应用
string s1 = "Hello ";
string s2 = s1;
s1 += "World";
System.Console.WriteLine(s2);
//Output: Hello