1 using UnityEditor;
 2 using UnityEngine;
 3 
 4 public class Test
 5 {
 6     [MenuItem("BuildTool/Lugs")]
 7     static void LugsTest()
 8     {
 9         string[] array = new string[] { "2019", "08", "17" };
10         string res = string.Join("-", array);
11         Debug.Log(res);
12     }
13 }

结果:

C#中string.Join的用法

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-27
  • 2022-12-23
  • 2022-03-06
  • 2022-02-06
  • 2022-02-12
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-31
  • 2022-02-28
相关资源
相似解决方案