You've already forked linux-packaging-mono
Imported Upstream version 4.8.0.309
Former-commit-id: 5f9c6ae75f295e057a7d2971f3a6df4656fa8850
This commit is contained in:
parent
ee1447783b
commit
94b2861243
41
external/cecil-legacy/Test/Resources/cs/Fields.cs
vendored
Normal file
41
external/cecil-legacy/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