コード例 #1
0
        public static NameResolutionContext TypeInstance(IntelliSenseCache cache, CodeType type)
        {
            Contract.Requires<ArgumentNullException>(type != null, "type");
            Contract.Ensures(Contract.Result<NameResolutionContext>() != null);

            throw new NotImplementedException();
        }
コード例 #2
0
ファイル: CodeArrayType.cs プロジェクト: Kav2018/JavaForVS
 public CodeArrayType(CodeType elementType)
     : base(elementType.Name, string.Format("{0}[]", elementType.FullName), elementType.Location, elementType.Parent)
 {
     Contract.Requires(elementType != null);
 }