[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-exmethod-43.cs
blobea4de7c978b70c13c60b99edac0e61497a5939c4
1 public class AdapterType
3 protected virtual void DoSomething ()
8 public static class Extensions
10 public static void DoSomething (this AdapterType obj)
15 public abstract class Dummy : AdapterType
17 public virtual bool Refresh ()
19 AdapterType someObj = null;
20 someObj.DoSomething ();
21 return true;
24 public static void Main ()