| 49 | | object obj1 = ExtensionFunction<Test>.Create(); |
|---|
| 50 | | object obj2 = ExtensionFunction<Test>.Create("Created with a single string parameter"); |
|---|
| 51 | | object obj3 = ExtensionFunction<Test>.Create("Created with two", "string parameters"); |
|---|
| | 49 | Test obj1 = ExtensionFunction<Test>.Create(); |
|---|
| | 50 | Test obj2 = ExtensionFunction<Test>.Create("Created with a single string parameter"); |
|---|
| | 51 | Test obj3 = ExtensionFunction<Test>.Create("Created with two", "string parameters"); |
|---|
| | 52 | //Console.WriteLine("Test.GetOutput(\"test1\") returned: {0}", obj1.GetOutput("test1")); |
|---|
| | 53 | //Console.WriteLine("Test.GetOutput(\"test2\") returned: {0}", obj2.GetOutput("test2")); |
|---|
| | 54 | //Console.WriteLine("Test.GetOutput(\"test3\") returned: {0}", obj3.GetOutput("test3")); |
|---|