HejVad är det som händer?
Upptäckte en skum grej igår som jag fan inte fattar. Kan nån förklara detta för mig?
Klistra in koden under och kör. Tryck på "ä" på tangentbordet. Ä översätts (felaktigt av mig) till þ (ascii 254). Men lik förbenat så anser IndexOf att þ finns i strängen "examination.typicalmethod". Nån som kan förklara detta för dumma mig?
public class Form1 : System.Windows.Forms.Form
{
private System.ComponentModel.IContainer components;
public Form1()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(336, 325);
this.KeyPreview = true;
this.Name = "Form1";
this.Text = "Form1";
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyDown);
}
#endregion
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
System.Windows.Forms.Application.Run(new Form1());
}
private void Form1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
string t="Examination.TypicalMethod";
string th=((char)e.KeyValue).ToString();
th=th.ToLower();
t=t.ToLower();
MessageBox.Show(t.IndexOf(th).ToString());
}
}
******* Edit ********
ibland blir man bara lite trött. þ kan ju också ses som "th" vilket gör att det är det han träffar...
ibland är .net lite mer än vad man vill ha...