외부 프로젝트 의존 테스트
This commit is contained in:
15
Sources/SampleLib/SampleClass.cs
Normal file
15
Sources/SampleLib/SampleClass.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace SampleLib
|
||||
{
|
||||
public static class SampleClass
|
||||
{
|
||||
public static string GetSampleString()
|
||||
{
|
||||
return "Sample" + "String";
|
||||
}
|
||||
|
||||
public static string SuperSampleString()
|
||||
{
|
||||
return "Super" + GetSampleString();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user