FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonnet/src/testing/fieldtest.cs at net8.0 · pythonnet/pythonnet · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
pythonnet
/
pythonnet
Public
Notifications
You must be signed in to change notification settings
Fork
780
Star
5.5k
Code
Issues
153
Pull requests
12
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonnet
/
src
/
testing
/
fieldtest.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
53 lines (49 loc) · 1.58 KB
Breadcrumbs
pythonnet
/
src
/
testing
/
fieldtest.cs
Copy path
File metadata and controls
53 lines (49 loc) · 1.58 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
namespace
Python
.
Test
{
/// <summary>
/// Supports units tests for field access.
/// </summary>
public
class
FieldTest
{
public
FieldTest
(
)
{
EnumField
=
ShortEnum
.
Zero
;
SpamField
=
new
Spam
(
"spam"
)
;
StringField
=
"spam"
;
}
public
void
Shutup
(
)
{
int
i
=
PrivateStaticField
;
int
j
=
PrivateField
;
}
public
static
readonly
int
ReadOnlyStaticField
=
0
;
protected
static
int
ProtectedStaticField
=
0
;
internal
static
int
InternalStaticField
=
0
;
private
static
int
PrivateStaticField
=
0
;
public
static
int
PublicStaticField
=
0
;
public
const
int
ConstField
=
0
;
public
readonly
int
ReadOnlyField
=
0
;
internal
int
InternalField
=
0
;
protected
int
ProtectedField
=
0
;
private
int
PrivateField
=
0
;
public
int
PublicField
=
0
;
public
bool
BooleanField
=
false
;
public
byte
ByteField
=
0
;
public
sbyte
SByteField
=
0
;
public
char
CharField
=
'A'
;
public
short
Int16Field
=
0
;
public
int
Int32Field
=
0
;
public
long
Int64Field
=
0
;
public
ushort
UInt16Field
=
0
;
public
uint
UInt32Field
=
0
;
public
ulong
UInt64Field
=
0
;
public
float
SingleField
=
0.0F
;
public
double
DoubleField
=
0.0
;
public
decimal
DecimalField
=
0
;
public
string
StringField
;
public
ShortEnum
EnumField
;
public
FlagsEnum
FlagsField
;
public
object
ObjectField
;
public
ISpam
SpamField
;
}
}
Back
|
FazBrowse Home
|
New Git URL