public static IVariable DefineLocal(this ICilWriter writer, Type type, bool isPinned, string name)
        {
            if (writer == null)
            {
                throw new ArgumentNullException("writer");
            }

            return(writer.DefineLocal(type, isPinned, name));
        }