Skip to content

Instantly share code, notes, and snippets.

@AbhinavPradeep
Created December 27, 2019 07:24
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 AbhinavPradeep/6cc72460e38f2794db2bdcc723e43951 to your computer and use it in GitHub Desktop.
Save AbhinavPradeep/6cc72460e38f2794db2bdcc723e43951 to your computer and use it in GitHub Desktop.
private Node CreateNode(Person person)
{
Node node = new Node();
node.person = person;
node.Next = null;
return node;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment