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 ("_", "__");
		}