Initial commit
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"name": "MyExercise_2"
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 28ba0dffcb810744ca1e365e085363f2
|
||||
AssemblyDefinitionImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,19 @@
|
||||
using System.Linq;
|
||||
|
||||
namespace MyExercise_2
|
||||
{
|
||||
public class StringFormatter
|
||||
{
|
||||
private string m_joinDelimiter = ",";
|
||||
|
||||
public void Configure(string joinDelimiter)
|
||||
{
|
||||
m_joinDelimiter = joinDelimiter;
|
||||
}
|
||||
|
||||
public string Join(object[] args)
|
||||
{
|
||||
return string.Join(m_joinDelimiter, args.Select(arg => arg.ToString()).ToArray());
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 469cc36ec383b434cbed4232e9b416c1
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user