Server.Request.GetFileExtentsion C# (CSharp) Method

GetFileExtentsion() private static method

private static GetFileExtentsion ( string filePath ) : string
filePath string
return string
        private static string GetFileExtentsion(string filePath)
        {
            return filePath.Substring(filePath.LastIndexOf('.') + 1);
        }