コード例 #1
0
        public static string GetTypeIdentity(Type type)
        {
            Requires.NotNull(type, nameof(type));
            Contract.Ensures(!string.IsNullOrEmpty(Contract.Result <string>()));

            return(ContractNameServices.GetTypeIdentity(type));
        }
コード例 #2
0
        public static string GetTypeIdentity(Type type)
        {
            Requires.NotNull(type, nameof(type));

            return(ContractNameServices.GetTypeIdentity(type));
        }