Tomboy.NoteMenuItem.FormatForLabel C# (CSharp) Méthode

FormatForLabel() static private méthode

static private FormatForLabel ( string name ) : string
name string
Résultat string
		static string FormatForLabel (string name)
		{
			// Replace underscores ("_") with double-underscores ("__")
			// so Note menuitems are not created with mnemonics.
			return name.Replace ("_", "__");
		}