SomeMethod() public static method

public static SomeMethod ( ) : void
return void
    public void RefExample(ITaskContext context)
    {
        //// Just an example that using of other .cs files work.
        BuildHelper.SomeMethod();

        //// Just an example that referencing external assemblies work.
        var exampleSerialization = JsonConvert.SerializeObject("Example serialization");
        var client = new RestClient("http://example.com");
    }
Example #2
0
 public void ExternalMethodExample()
 {
     BuildHelper.SomeMethod();
 }