Skip to content

Instantly share code, notes, and snippets.

@adrianbontea
Created January 15, 2017 20:10
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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