Sha256: 011d17f5bf766e47da83a512ef23467969dc7ac798a2cae33d18176331e1fad8

Contents?: true

Size: 437 Bytes

Versions: 2

Compression:

Stored size: 437 Bytes

Contents

using System;
using System.Collections.Generic;

namespace ClrModels {
	public class SwordWithStatics : Sword{

    static SwordWithStatics(){
      ClassNaming = "Sword with statics";
    }

    public SwordWithStatics(){ SwordName = "Sword name for statics"; }

    public void AnotherMethod(){}
    public static void AStaticMethod(){}
    public static string ClassNaming { get; set; }
    public string SwordName{get; set;}
  }
  
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
caricature-0.7.7 spec/fixtures/SwordWithStatics.cs
caricature-0.7.6 spec/fixtures/SwordWithStatics.cs