Skip to content

Instantly share code, notes, and snippets.

View DeonPieterse's full-sized avatar
💻
Professional Yoda Condition Writer

Deon DeonPieterse

💻
Professional Yoda Condition Writer
View GitHub Profile
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
/// <summary>
/// A simple free camera to be added to a Unity game object.
///
/// Keys:
@yetanotherchris
yetanotherchris / gist:4960171
Last active September 26, 2022 02:04
Double Linked List C# example
public static void Main()
{
DoubleLinkedList list = new DoubleLinkedList();
list.Insert("1");
list.Insert("2");
list.Insert("3");
DoubleLink link4 = list.Insert("4");
list.Insert("5");
Console.WriteLine("List: " + list);