Sha256: 02227803a22e34c41c5f90ae41127ec26d1d8e3766987b7159fc6ecbb62dd17b
Contents?: true
Size: 1.72 KB
Versions: 17
Compression:
Stored size: 1.72 KB
Contents
using System; using System.Collections.Generic; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Ink; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; using rhoruntime; namespace rho { namespace <%= namecamelcase %>Impl { public class <%= namecamelcase %> : <%= namecamelcase %>Base { public <%= namecamelcase %>() { // initialize class instance in C# here } public override void getSimpleStringProperty(IMethodResult oResult) { // implement this method in C# here } public override void setSimpleStringProperty(string simpleStringProperty, IMethodResult oResult) { // implement this method in C# here } public override void getPlatformName(IMethodResult oResult) { // implement this method in C# here } public override void calcSumm(int a, int b, IMethodResult oResult) { // implement this method in C# here } public override void joinStrings(string a, string b, IMethodResult oResult) { // implement this method in C# here } } public class <%= namecamelcase %>Singleton : <%= namecamelcase %>SingletonBase { public <%= namecamelcase %>Singleton() { // initialize singleton instance in C# here } public override void enumerate(IMethodResult oResult) { // implement this method in C# here } } public class <%= namecamelcase %>Factory : <%= namecamelcase %>FactoryBase { } } }
Version data entries
17 entries across 17 versions & 2 rubygems