This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
/// <summary> | |
/// Extend an existing Function. | |
/// </summary> | |
public static class ExtMethod | |
{ | |
public static string Ext_Method(this string str1) | |
{ | |
// | |
// TODO: Add logic here | |
// Ex: | |
return "Extended Method Return"; | |
} | |
} |