Skip to content

Instantly share code, notes, and snippets.

@jasper-d
Last active May 7, 2021 16:00
Show Gist options
  • Save jasper-d/7e410b6815fe1694301194d393d2d542 to your computer and use it in GitHub Desktop.
Save jasper-d/7e410b6815fe1694301194d393d2d542 to your computer and use it in GitHub Desktop.
namespace Nats.Async.Connection
{
public class Foo
{
private const int MY_CONST = 42;
public const int MyPubConst = 42;
private static int s_myPrivateStaticField = 42;
public static int MyPubStaticField = 42;
private int _myPrivateField = 42;
public int MyPublicField;
public Foo()
{
MyPublicField = 42;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment