17 lines
136 B
C#
17 lines
136 B
C#
|
using System;
|
||
|
|
||
|
enum E
|
||
|
{
|
||
|
A
|
||
|
}
|
||
|
|
||
|
class C
|
||
|
{
|
||
|
public static void Main ()
|
||
|
{
|
||
|
E dt = E.A;
|
||
|
IntPtr ip = (IntPtr)dt;
|
||
|
ip = (IntPtr)E.A;
|
||
|
}
|
||
|
}
|