Skip to content

Instantly share code, notes, and snippets.

@adrianbontea
Created January 15, 2017 20:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adrianbontea/8bf74219c015b4b101b228d2fb538c72 to your computer and use it in GitHub Desktop.
Save adrianbontea/8bf74219c015b4b101b228d2fb538c72 to your computer and use it in GitHub Desktop.
using ClassLibraryNetStandard;
using Newtonsoft.Json;
using System;
namespace ConsoleAppNetFramework
{
class Program
{
static void Main(string[] args)
{
var test = new Test { SomeProperty = "One", SomeOtherProperty = "Two" };
Console.WriteLine($"Hello from .net framework! Here's one .net standard Test instance:{JsonConvert.SerializeObject(test)}");
Console.ReadLine();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment