12 lines
140 B
C#
12 lines
140 B
C#
using System;
|
|
|
|
public class Error {
|
|
[Obsolete ("NOT", true)]
|
|
public virtual string Filename {
|
|
set {
|
|
}
|
|
get {
|
|
return "aa";
|
|
}
|
|
}
|
|
} |