Loyc.Localize.Passthru C# (CSharp) Метод

Passthru() публичный статический Метод

This is the dummy translator, which is the default value of Localizer. It passes strings through untranslated. A msgId symbol cannot be handled so it is simply converted to a string.
public static Passthru ( Symbol msgId, string msg ) : string
msgId Symbol
msg string
Результат string
		public static string Passthru(Symbol msgId, string msg)
		{
            return msg ?? (msgId == null ? null : msgId.Name);
		}