ServParam2ClientModelEngine/UseEngineConsolo/Program.cs

46 lines
1.6 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CoderEngine;
namespace UseEngineConsolo
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine();
Console.WriteLine();
Console.WriteLine("==========================================");
Console.WriteLine("====== 皓月跨语言实体类转换引擎 ======");
Console.WriteLine("==========================================");
Console.WriteLine();
Console.WriteLine();
//string JavaCode = new JavaCodeWrite().ModelToJavaCode("CoderEngine", "A");
//Console.WriteLine();
//Console.WriteLine("C#实体类动态转Java代码结果");
//Console.WriteLine();
//Console.WriteLine(JavaCode);
//Console.WriteLine();
//Console.WriteLine();
//string CSCode = new SwiftCodeWrite().ModelToSwiftCode("CoderEngine", "A");
//Console.WriteLine();
//Console.WriteLine("C#实体类动态转Ajax客户端代码结果");
//Console.WriteLine();
//Console.WriteLine(CSCode);
//Console.ReadLine();
string AjaxCode = new AjaxCodeWrite().ModelToAjaxCode("CoderEngine", "A");
Console.WriteLine();
Console.WriteLine("C#实体类动态转Ajax客户端代码结果");
Console.WriteLine();
Console.WriteLine(AjaxCode);
Console.ReadLine();
}
}
}