Example #1
0
    static void Main(string[] args)
    {
        ThirdPartyClass t = new ThirdPartyClass();

        Console.WriteLine(t.Fun("hh"));
        Console.WriteLine(t.Fun(1));
    }
Example #2
0
 public static string Fun(this ThirdPartyClass test, int val)
 {
     return("ThirdParty" + val);
 }
Example #3
0
 public static string Fun(this ThirdPartyClass test, string val)
 {
     return("Local" + val);
 }
Example #4
0
 public static SomeStaticMethod()
 {
     ThirdPartyClass.SomeStaticMethod();
 }
Example #5
0
 public BaseClass(int i)
 {
     _obj = new ThirdPartyClass(i);
 }
Example #6
0
 public Event(ThirdPartyClass eventFromArgus)
 {
     _eventFromArgus = eventFromArgus;
 }
Example #7
0
 public ThirdPartyClassSerializable(ThirdPartyClass oTPC)
 {
     m_TPC = oTPC;
 }
Example #8
0
 public MyFunctionality(ThirdPartyClass target)
 ...