CSharpAnalytics.Protocols.Measurement.MeasurementConfiguration.FormatVersion C# (CSharp) Method

FormatVersion() static private method

Format the application version number to be sent to analytics.
static private FormatVersion ( Windows version ) : string
version Windows Version of the application.
return string
        internal static string FormatVersion(Windows.ApplicationModel.PackageVersion version)
        {
            return String.Join(".", version.Major, version.Minor, version.Build, version.Revision);
        }