You've already forked linux-packaging-mono
Imported Upstream version 5.0.0.42
Former-commit-id: fd56571888259555122d8a0f58c68838229cea2b
This commit is contained in:
parent
1190d13a04
commit
6bdd276d05
41
external/linker/cecil/Test/Resources/cs/Fields.cs
vendored
Normal file
41
external/linker/cecil/Test/Resources/cs/Fields.cs
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
class Foo {
|
||||
Bar bar;
|
||||
}
|
||||
|
||||
class Bar {
|
||||
volatile int oiseau;
|
||||
}
|
||||
|
||||
class Baz {
|
||||
bool @bool;
|
||||
char @char;
|
||||
sbyte @sbyte;
|
||||
byte @byte;
|
||||
short int16;
|
||||
ushort uint16;
|
||||
int int32;
|
||||
uint uint32;
|
||||
long int64;
|
||||
ulong uint64;
|
||||
float single;
|
||||
double @double;
|
||||
string @string;
|
||||
object @object;
|
||||
}
|
||||
|
||||
enum Pim {
|
||||
Pam = 1,
|
||||
Poum = 2,
|
||||
}
|
||||
|
||||
class PanPan {
|
||||
|
||||
public const PanPan Peter = null;
|
||||
public const string QQ = "qq";
|
||||
public const string nil = null;
|
||||
public const object obj = null;
|
||||
public const int [] ints = null;
|
||||
}
|
Reference in New Issue
Block a user