[WinForms] Fix #18506 ActiveTracker, do not propagate message to control when it...
[mono-project.git] / mono / benchmark / inline-readonly.cs
blobdf610eed406e77a8bc47352e66ed9292b1660b16
1 using System;
3 public class A {
5 static readonly A a = new A ();
7 static int Main ()
8 {
9 for (int i = 0; i < 500000000; i++)
10 a.Dummy ();
12 return 0;
15 public virtual void Dummy () {