Skip to content

Instantly share code, notes, and snippets.

View Hotriden's full-sized avatar

Slava Hotriden

  • Kharkiv
View GitHub Profile
public void Method(string word)
{
char[] chart = new char[word.Length];
for(int i=0; i<word.Length; i++)
{
chart[i] = word[i];
for(int j = 0; j < chart.Length; j++)
{
Console.Write(chart[j]);
}
public void Method(string word)
{
char[] chart = new char[word.Length];
for(int i=0; i<word.Length; i++)
{
chart[i] = word[i];
for(int j = 0; j < chart.Length; j++)
{
Console.Write(chart[j]);
}
public class Samurai {
public IWeapon Weapon { get; private set; }
public Samurai(IWeapon weapon)
{
this.Weapon = weapon;
}
}
public class WarriorModule : NinjectModule
{