Raw File
UsefulCSharpClass.cs
using System;

namespace CSharpLibrary
{
    public class UsefulCSharpClass
    {
        public string GetSomethingUseful()
        {
            return "Something Useful";
        }
    }
}
back to top