You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
436 B
C#

/*
* Created by SharpDevelop.
* User: windows
* Date: 23.02.2005
* Time: 12:47
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
namespace hash
{
class MainClass
{
public static void Main(string[] args)
{
string s="foo";
Console.WriteLine(s.GetHashCode());
}
private void foo()
{
Console.WriteLine("Hallo");
}
}
}