Changeset 1348 for branches/New Persistence Exploration/Persistence/Test
- Timestamp:
- 03/16/09 16:35:31 (16 years ago)
- Location:
- branches/New Persistence Exploration/Persistence/Test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/New Persistence Exploration/Persistence/Test/NewSerializationTest.cs
r1338 r1348 120 120 } 121 121 122 public static void Main() { 123 int[] i = {1, 2, 3}; 124 object o = i; 125 Type type = o.GetType().BaseType.BaseType; 126 foreach (MemberInfo mi in type.GetMembers(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic )) { 127 if ( mi.MemberType == MemberTypes.Field || mi.MemberType == MemberTypes.Property ) 128 Console.WriteLine(mi.Name); 129 } 122 public static void Main() { 130 123 Test1(); 131 124 //Test2(); -
branches/New Persistence Exploration/Persistence/Test/Test.csproj
r1338 r1348 49 49 <Compile Include="NewSerializationTest.cs" /> 50 50 </ItemGroup> 51 <ItemGroup> 52 <Reference Include="System" /> 53 <Reference Include="System.Core"> 54 <RequiredTargetFramework>3.5</RequiredTargetFramework> 55 </Reference> 56 </ItemGroup> 51 57 </Project>
Note: See TracChangeset
for help on using the changeset viewer.