Advertisement
goofer

ZeroTouch Sandbox HelloNode.cs

Sep 21st, 2018
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | None | 0 0
  1. ?using System;
  2.  
  3. namespace DougKlassen.Dynamo.Sandbox
  4. {
  5.     public class HelloNode
  6.     {
  7.         /// <summary>
  8.         /// Generates a hello world message
  9.         /// </summary>
  10.         /// <returns>The hello world message</returns>
  11.         /// <search>sandbox, hello world</search>
  12.         public static String HelloMessage()
  13.         {
  14.             String msg = "Hello Dynamo!";
  15.             return msg;
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement