Пример #1
0
 /// <summary>
 /// Gets the part or all of the undecorated symbol name.
 /// </summary>
 /// <param name="flags">Specifies a combination of flags that control what is returned.</param>
 /// <returns>Returns the undecorated name for a C++ decorated name.</returns>
 public string GetUndecoratedName(NameUndecorator.Flags flags = NameUndecorator.Flags.Complete)
 {
     return(NameUndecorator.UnDecorateSymbolName(Name, flags));
 }
Пример #2
0
 private void Test(string expectedOutput, string input, NameUndecorator.Flags flags = NameUndecorator.Flags.Complete)
 {
     Assert.Equal(expectedOutput, NameUndecorator.UnDecorateSymbolName(input, flags));
 }