コード例 #1
0
        private string GetCloudTypeString(Cloud.eType t)
        {
            string r   = t.ToString();
            string ret = R.ResourceManager.GetString(r, R.Culture);

            return(ret);
        }
コード例 #2
0
ファイル: Formatter.cs プロジェクト: Engin1980/METAR.NET
 private static string Get(Cloud.eType eType)
 {
     return
         (R.ResourceManager.GetString(eType.ToString(), R.Culture));
 }