FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonnet/src/testing/conversiontest.cs at master · 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
/
conversiontest.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
97 lines (81 loc) · 2.14 KB
Breadcrumbs
pythonnet
/
src
/
testing
/
conversiontest.cs
Copy path
File metadata and controls
97 lines (81 loc) · 2.14 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
namespace
Python
.
Test
{
using
System
;
using
System
.
Collections
.
Generic
;
/// <summary>
/// Supports unit tests for field access.
/// </summary>
public
class
ConversionTest
{
public
ConversionTest
(
)
{
EnumField
=
ShortEnum
.
Zero
;
SpamField
=
new
Spam
(
"spam"
)
;
StringField
=
"spam"
;
}
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
IntPtr
IntPtrField
=
IntPtr
.
Zero
;
public
UIntPtr
UIntPtrField
=
UIntPtr
.
Zero
;
public
decimal
DecimalField
=
0
;
public
string
StringField
;
public
ShortEnum
EnumField
;
public
object
ObjectField
=
null
;
public
ISpam
SpamField
;
public
byte
[
]
ByteArrayField
;
public
sbyte
[
]
SByteArrayField
;
public
readonly
List
<
int
>
ListField
=
new
List
<
int
>
(
)
;
public
T
?
Echo
<
T
>
(
T
?
arg
)
where
T
:
struct
{
return
arg
;
}
}
public
interface
ISpam
{
string
GetValue
(
)
;
}
public
class
Spam
:
ISpam
{
private
string
value
;
public
Spam
(
string
value
)
{
this
.
value
=
value
;
}
public
string
GetValue
(
)
{
return
value
;
}
}
public
class
UnicodeString
{
public
string
value
=
"안녕"
;
public
string
GetString
(
)
{
return
value
;
}
public
override
string
ToString
(
)
{
return
value
;
}
}
public
class
MethodResolutionInt
{
public
IEnumerable
<
byte
>
MethodA
(
ulong
address
,
int
size
)
{
return
new
byte
[
10
]
;
}
public
int
MethodA
(
string
dummy
,
ulong
address
,
int
size
)
{
return
0
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL