I pass a two-dimensional array as a property to my user control. There I store this values in another two-dimensional array:
int[,] originalValues = this.Met
You can clone an array, which makes a copy of it:
int[,] originalValues = (int[,])this.Metrics.Clone();