Skip to content

Instantly share code, notes, and snippets.

View alpersilistre's full-sized avatar
🧩
Focusing

Alper Silistre alpersilistre

🧩
Focusing
View GitHub Profile
@alpersilistre
alpersilistre / ParameterPassing.cs
Created December 17, 2015 12:58
C# Parameter Passing example.(out, ref, normal passing)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TestProject
{
class Program
{
@alpersilistre
alpersilistre / StackTest.cs
Last active December 17, 2015 13:00
C# Stack Implementation (Not Finished)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StackTest
{
public class Stack
{