aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/Templates/Method.cshtml
blob: 3b54d4e57ed0f8f407f5b44b0f83bf9361c51ec2 (plain)
1
2
3
4
@(Model.GetModifierString()) @(Model.MethodModifier != CodeGenerator.MethodModifier.None ? Model.MethodModifier.ToString().ToLower() : null) @(Model.ReturnType) @(Model.Name)(@(Model.GetArgumentsString()))
            {
                  @Model.Content
            }
w"> System.Threading.Tasks; namespace Tango.Video.DirectShow { public class FrameSize { public FrameSize(int w, int h) { Width = w; Height = h; } public int Width { get; set; } public int Height { get; set; } } }