コード例 #1
0
        public string ConventionOf(Type type)
        {
            string convention;

            if (!UsingDictionary.TryGetConvention(type, out convention))
            {
                convention = GetNewValidConvention(type);
                UsingDictionary.AddConventionInternal(type, convention);
            }
            return(convention);
        }