Adf.Data.InternalState.InternalStatusEngine.ParseKey C# (CSharp) Метод

ParseKey() приватный статический Метод

Returns a string comprising the specified current InternalStatus and desired InternalStatus.
private static ParseKey ( InternalStatus current, InternalStatus desired ) : string
current InternalStatus The current .
desired InternalStatus The desired .
Результат string
        private static string ParseKey(InternalStatus current, InternalStatus desired)
        {
            return string.Format("{0} : {1}", current, desired);
        }