Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0246-8.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 398bbc0d211c3eaedb93de94847a6b390f5dcaba (plain)
1
2
3
4
5
6
7
8
9
// CS0246: Cannot find type `Reflection.ConstructorInfo'
// Line: 7
using System;

class foo {
    static void Main(string[] args ) {    
        Reflection.ConstructorInfo ci;        
    }
}