Created
April 22, 2015 15:22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using scala.runtime; | |
using System; | |
using Systematic.Prefix.Library.Classic; | |
namespace Systematic.Prefix.ClassLibrary1 | |
{ | |
public class MyClass : Library, Stringify | |
{ | |
public override string AsString() | |
{ | |
return Stringify$class.AsString(this); | |
} | |
public override string Sample() | |
{ | |
return ((Stringify)this).AsString(); | |
} | |
public MyClass() | |
{ | |
Stringify$class.$init$(this); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment