Removing the last character from a string

This coding challenge involves you to remove the last character from a string.

It involves writing a RemoveLastCharacter function, passing in the string as a parameter.

Begin with this function:

public class StringFunctions 
{
	public string RemoveLastCharacter(string value)
	{

	}
}

Now go ahead and write some code that will return the value without it's last character.