blob: 866410dc165e17d63e7a369b74c5b2f0f3a0387f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Compiler options: -r:FULL=System.dll
extern alias FULL;
using System;
using NameValueCollection =
FULL::System.Collections.Specialized.NameValueCollection;
public class test
{
public static void Main () { }
}
|