|
accessor macro question: msg#00025lang.nemerle.devel
Hi, I want to know about accessor macro. -- sample.n using System; using System.IO; using Nemerle.Utility; public class Foo { [Accessor(flags=WantSetter)] mutable _bar : string; } -- compiled sample.n to dll(assembly) and use from C#. but error CS1545 occurred. then, I disassemble the compiled asseimbly by Reflector. -- public class Foo { // Methods public Foo(); // Properties public string this[string] { get; set; } // Fields private string _bar; } -- there is indexer, but Bar property is not exists. Please give me instructions for using the accessor macro. Thanks. -- akiramei <mei@xxxxxxxxxxxxxxxx>
|
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| Previous by Date: | Fwd: [fsharp] RE: Tail Recursion, Michal Moskal |
|---|---|
| Next by Date: | Re: accessor macro question, Kamil Skalski |
| Previous by Thread: | Fwd: [fsharp] RE: Tail Recursion, Michal Moskal |
| Next by Thread: | Re: accessor macro question, Kamil Skalski |
| Indexes: | [Date] [Thread] [Top] [All Lists] |
| News | FAQ | advertise |