a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
26 lines
276 B
C#
26 lines
276 B
C#
using System;
|
|
|
|
public class ZipEntry
|
|
{
|
|
DateTime cal = DateTime.Now;
|
|
|
|
public ZipEntry(string name)
|
|
{
|
|
}
|
|
|
|
public ZipEntry(ZipEntry e)
|
|
{
|
|
}
|
|
|
|
public DateTime DateTime {
|
|
get {
|
|
return cal;
|
|
}
|
|
}
|
|
|
|
public static int Main () {
|
|
// Compilation only test.
|
|
return 0;
|
|
}
|
|
}
|