13 lines
192 B
C#
13 lines
192 B
C#
|
using System;
|
||
|
|
||
|
namespace CSharpLibrary
|
||
|
{
|
||
|
public class UsefulCSharpClass
|
||
|
{
|
||
|
public string GetSomethingUseful()
|
||
|
{
|
||
|
return "Something Useful";
|
||
|
}
|
||
|
}
|
||
|
}
|