Tomboy.NoteMenuItem.FormatForLabel C# (CSharp) Метод

FormatForLabel() статический приватный Метод

static private FormatForLabel ( string name ) : string
name string
Результат string
		static string FormatForLabel (string name)
		{
			// Replace underscores ("_") with double-underscores ("__")
			// so Note menuitems are not created with mnemonics.
			return name.Replace ("_", "__");
		}