Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
A

a_ravindra

@a_ravindra
About
Posts
4
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to use Internal , Protected Internal across Assemblies..
    A a_ravindra

    Thanks this was useful..

    C# tutorial

  • How to use Internal , Protected Internal across Assemblies..
    A a_ravindra

    Hi can any body the sample code to declare a as protected Internal , as well as Internal to use across different assemblies.. Assembly1 define class as Protected Internal or Internal define member variables as Protected internal / internal eg. namespace Assembly1 { protected Internal class Assembly1Base { protected internal Member1; internal Member2; } } define anothe class derive from assembly1.Assembly1Base namespace Assembly2 { // inherit or create objects of above class } and access the different members

    C# tutorial

  • how to create Const Member methods inside a class. how to create const objects of a Class.
    A a_ravindra

    Thanks. How do you create a method , which will only be allowed to read the data Members, but can not be allowed to modify the data of the object . The static method, can still modify the static data members of the class.

    C# tutorial

  • how to create Const Member methods inside a class. how to create const objects of a Class.
    A a_ravindra

    how to create Const Member methods inside a class. how to create const objects of a Class. Class Base { int member1=10; public void ModifyMember() // I need to make this method Const { member1 +=1; } } //In Main public static void Main() { //how to creat cons objects of class Base }

    C# tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups