Skip to content

Instantly share code, notes, and snippets.

@TryJSIL
TryJSIL / StructCopyElimination.cs
Created April 27, 2012 11:13
Struct Copy Elimination
using System;
public static class Program {
public static CustomType ReturnArgument (CustomType arg) {
return arg;
}
public static void Main (string[] args) {
var a = new CustomType(1);
var b = new CustomType(2);