APIDocumentationCreator.Parser.RemoveIDLTokens C# (CSharp) Method

RemoveIDLTokens() private static method

private static RemoveIDLTokens ( string value ) : string
value string
return string
        private static string RemoveIDLTokens(string value)
        {
            value = value.Replace("*", "");
            value = value.Replace("IInterface", "");

            return value;
        }