---
title: "CSharp调用Java&与Android交互"
author: "Perrin Yong"
author_profile: https://www.pystone.net/profile/
published_by: "Perrin Yong"
canonical: https://www.pystone.net/notes/unity-csharp-call-java-android-interop/
type: note
content_role: unspecified
visibility: public
id_stability: rename-stable
source_path: "10-计算机、信息技术与工程/05-游戏图形与运行时/Unity/CSharp调用Java&与Android交互.md"
content_hash: 2b0537f9bb0406070951ebda13ec3c923e428a24bb606a773b2b8aef4c51758c
knowledge_version: 224c990773de.5fa8af6e39fa
site_commit: 224c990773de166d23a886306577dd90379529ce
notes_commit: 5fa8af6e39fa3891d1b9b4832bfa6c4e0ecaaf0a
---
# 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>

## 应用

```csharp
string s1 = &quot;Hello &quot;;
string s2 = s1;
s1 += &quot;World&quot;;

System.Console.WriteLine(s2);
//Output: Hello

```

## Ref

<https://www.xuanyusong.com/archives/4753>
