I am looking through some C# code and I am seeing something I cannot figure out near the class definition. Here is a sample of what I am seeing.
[MethodImpl(MethodImplOptions.Synchronized)] public void AddTag(RTag tag) { this.tags.Add(tag) } What the heck is the first line doing or stating? I have not been able to track it down in any of my reference books.
Thanks!
Thisis written with a capital letter? That sound fishy.publicwas also capitalized.