linux-packaging-mono/mcs/errors/CS0619-42-lib.cs

12 lines
140 B
C#
Raw Normal View History

using System;
public class Error {
[Obsolete ("NOT", true)]
public virtual string Filename {
set {
}
get {
return "aa";
}
}
}