OT : Are u instructor material ?

  • Thread starter Thread starter OHM \( Terry Burns \)
  • Start date Start date
O

OHM \( Terry Burns \)

I am setting up a developer training school in Slough ( UK ) which is 20
miles west of London, I am looking for people who are willing to earn money
by providing their skills transfer through teaching.

If you have any experience in training and are VB.NET or C# experienced let
me know ( See my email below )

Regards - Terry - Use the following to email me *

char[] ch = "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray();
int i;

for(i = 0; i< ch.Length;i++)
{
ch = Convert.ToChar(Convert.ToInt16(ch) - 1);
}
System.Diagnostics.Process.Start("mailto:" + new string(ch));

--
 
OHM said:
Regards - Terry - Use the following to email me *

char[] ch = "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray();
int i;

for(i = 0; i< ch.Length;i++)
{
ch = Convert.ToChar(Convert.ToInt16(ch) - 1);
}
System.Diagnostics.Process.Start("mailto:" + new string(ch));


I'd really like to see your travelinstructions
on how to reach the school.

;)
 
LOL, I would not be so cryptic in real life.




Willem van Rumpt said:
OHM said:
Regards - Terry - Use the following to email me *

char[] ch = "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray();
int i;

for(i = 0; i< ch.Length;i++)
{
ch = Convert.ToChar(Convert.ToInt16(ch) - 1);
}
System.Diagnostics.Process.Start("mailto:" + new string(ch));


I'd really like to see your travelinstructions
on how to reach the school.

;)
 
OHM ( Terry Burns ) said:
I am setting up a developer training school in Slough ( UK ) which is 20
miles west of London, I am looking for people who are willing to earn money
by providing their skills transfer through teaching.

If you have any experience in training and are VB.NET or C# experienced let
me know ( See my email below )

Regards - Terry - Use the following to email me *

char[] ch = "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray();
int i;

for(i = 0; i< ch.Length;i++)
{
ch = Convert.ToChar(Convert.ToInt16(ch) - 1);
}
System.Diagnostics.Process.Start("mailto:" + new string(ch));


Any reason for not expressing the line in the for loop as just

ch--;

?
 
Yes, lazyness, I coverted this from VB.NET

;-)



Jon Skeet said:
OHM ( Terry Burns ) said:
I am setting up a developer training school in Slough ( UK ) which is 20
miles west of London, I am looking for people who are willing to earn money
by providing their skills transfer through teaching.

If you have any experience in training and are VB.NET or C# experienced let
me know ( See my email below )

Regards - Terry - Use the following to email me *

char[] ch = "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray();
int i;

for(i = 0; i< ch.Length;i++)
{
ch = Convert.ToChar(Convert.ToInt16(ch) - 1);
}
System.Diagnostics.Process.Start("mailto:" + new string(ch));


Any reason for not expressing the line in the for loop as just

ch--;

?
 
Back
Top