Posts

Showing posts from January, 2017

Introduction to Bootstrap 4

Image
In this blog, I'll tell you a brief description of Bootstrap 4. Currently, Bootstrap 4 alpha was released. This release included a major upgrade of Bootstrap with some huge changes to the way it functions. Porting from Bootstrap 3 to Bootstrap 4 only some of the components are same (some are improved), and only a few have been dropped (with functionality ported to new components). Bootstrap 4 causes lot of changes to most components, including tables, forms, grids, dropdowns, navbars, and more. In Tables It supports Inverse Tables, Table Head Styles, also .table- prefix has been added for its contextual classes,Bootstrap 4 also added .responsive-table to the actual <table> element. In Forms   .form-horizontal class has been dropped to display horizontal forms, Forms require the .row class when using grids, Use .form-control-lg and .form-control-sm to increase or decrease the size of an input control, uses the .form-text class to display help

Why Entrepreneurs Should Network an Influencer for Business Growth

Image
I’ve had a busy few weeks networking. Last night, I returned home from something like my tenth networking event this month. It made me realize that networking is extremely important for entrepreneurs. So the next time you think a networking event is probably going to be a waste of time, here are a few reasons why you should put down your tools for the day and head out to meet new people. It’s All About the Connections: You’ve heard the phrase, “It’s not what you know, it’s WHO you know.” It’s true. If you want to be a successful entrepreneur, knowledge alone just isn’t going to cut it. You will also need to know the "right people". You Learn New Things: No entrepreneur has gone on to be a rip-roaring success on the back of their own knowledge alone. We all need a helping hand, which is why there is such a big fuss being made about mentors. Read more about Why Entrepreneurs Should Network an Influencer for Business Growth visit FindNerd.

Extension Methods & its Advantages in C#

Image
Extension Methods in C# Extension Methods were introduced in c# 3.0. These methods are helpful in adding methods to the types which already existed i.e without creating a derived type via inheritance, methods can be added to existing type. In short functionality of existing type is extended. Creation and Usage of Extension Method     Extension method can be defined as static method with static class where first parameter in this method is used with "this" modifier and type of this parameter is of the type that is extended. Program Demonstrating Usage of Extention Methods First create a blank solution named "ExtmethodExample" in visual studio 2015. Create a project Class Library named as "Extmethod". Now create another project console application named "ExtendingExtmethod" in  "ExtmethodExample" solution and include the reference of class library created above in this project. Read mor